forked from iamdustan/reworkcss_ast_explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.1 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
47
48
{
"name": "reworkcss_ast_demo",
"version": "0.1.0",
"description": "Online AST explorer of Rework/css’s AST structure",
"repository": {
"type": "git",
"url": "https://github.com/iamdustan/reworkcss_ast_explorer.git"
},
"authors": [
"Dustan Kasten",
"Felix Kling"
],
"license": "MIT",
"devDependencies": {
"brfs": "^1.1.1",
"browserify": "^9.0.3",
"envify": "^3.2.0",
"http-server": "^0.8.0",
"reactify": "^1.1.0",
"uglify-js": "^2.4.16",
"watchify": "^2.3.0"
},
"dependencies": {
"codemirror": "^5.1.0",
"css": "^2.2.0",
"keypress": "git://github.com/dmauro/Keypress",
"pubsub-js": "^1.4.2",
"react": "^0.13.1",
"react-tools": "^0.13.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"
}
}