forked from fasiha/ebisu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 997 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"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 && npx mjpage < index.html > tmp && mv tmp index.html && npm run notebook",
"test": "npm run build && python3 -m \"nose\" -v && npm run notebook",
"notebook": "jupyter nbconvert --to notebook --execute EbisuHowto.ipynb",
"pypi": "rm dist/* && 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"
}
}