-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 805 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 805 Bytes
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
{
"name": "PyJS",
"version": "0.1.0",
"description": "A minimal Python interpreter written in JavaScript",
"repository": {
"url": "https://github.com/yzyzsun/PyJS.git",
"type": "git"
},
"author": "Sun Yaozhu <yzyzsun@gmail.com>",
"license": "MIT",
"main": "src/interpreter.js",
"bin": "src/cli.js",
"scripts": {
"build:jison": "cd src && jison parser.jison",
"build:webpack": "webpack",
"build": "npm run build:jison && npm run build:webpack"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"codemirror": "^5.31.0",
"css-loader": "^0.28.7",
"jison": "^0.4.18",
"raw-loader": "^0.5.1",
"skeleton-css": "^2.0.4",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
}
}