forked from fkling/astexplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
40
41
42
43
44
45
46
{
"name": "esprima_harmony_demo",
"version": "0.1.0",
"description": "Online demo of FB's esprima harmony branch",
"repository": {
"type": "git",
"url": "https://github.com/fkling/esprima_ast_explorer.git"
},
"author": "Felix Kling",
"license": "MIT",
"devDependencies": {
"brfs": "^1.1.1",
"browserify": "^9.0.3",
"envify": "^3.2.0",
"http-server": "^0.8.0",
"reactify": "^1.0.0",
"uglify-js": "^2.4.16",
"watchify": "^2.3.0"
},
"dependencies": {
"codemirror": "^5.1.0",
"escodegen": "^1.4.1",
"esprima-fb": "^14001.1.0-dev-harmony-fb",
"keypress": "git://github.com/dmauro/Keypress",
"pubsub-js": "^1.4.2",
"react": "^0.12.1",
"react-tools": "^0.12.x"
},
"browserify": {
"transform": [
[
"reactify",
{
"harmony": true
}
],
"envify",
"brfs"
]
},
"scripts": {
"start": "http-server",
"build": "NODE_ENV=production browserify src/app.js | uglifyjs -mc -b beautify=false,ascii-only=true > app.js",
"watch": "NODE_ENV=development watchify src/app.js -o app.js"
}
}