-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
39 lines (39 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "jaspy",
"version": "0.0.4",
"description": "a Python VM written entirely from scratch in JavaScript with some unique features",
"main": "jaspy.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "node_modules/.bin/karma start .karma.js",
"build": "python3 build.py",
"prepublish": "python3 build.py && cp build/jaspy.js .",
"publish": "rm -f jaspy.js",
"start": "cd example && PYTHONPATH=../ python3 -m jaspy.cli --interactive --jaspy-js ../jaspy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koehlma/jaspy.git"
},
"keywords": [
"python",
"interpreter"
],
"devDependencies": {
"coveralls": "^2.11.4",
"jasmine": "2.1.x",
"jasmine-core": "^2.3.4",
"karma": "^0.13.3",
"karma-coverage": "^0.4.2",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^0.3.6"
},
"author": "Maximilian Köhl <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/koehlma/jaspy/issues"
},
"homepage": "https://github.com/koehlma/jaspy#readme"
}