forked from fasiha/ebisu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 902 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "Ebisu",
"version": "1.0.0",
"main": "md2code.js",
"repository": "https://github.com/fasiha/ebisu",
"author": "Ahmed Fasih <[email protected]>",
"license": "Unlicense",
"scripts": {
"doc": "pydoc-markdown ebisu.ebisu > doc/doc.md",
"build": "node md2code.js",
"html": "cp header.html index.html && pandoc --no-highlight -t html5 -f markdown_github-hard_line_breaks+yaml_metadata_block+markdown_in_html_blocks+auto_identifiers README.md | sed 's/\\\\&/\\&/g' >> index.html && node_modules/.bin/mjpage < index.html | grep -v HLJS_CLIENTSIDE > tmp && mv tmp index.html",
"test": "yarn build && python3 -m \"nose\" -v",
"pypi": "python setup.py sdist bdist_wheel && python3 setup.py sdist bdist_wheel && twine upload dist/* --skip-existing"
},
"dependencies": {},
"devDependencies": {
"lodash": "^4.17.4",
"mathjax-node-page": "^1.2.7"
}
}