-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
49
50
51
{
"name": "conway-redux-vdom",
"version": "1.0.0",
"description": "Conway's Game of Life built with redux and virtual-dom",
"main": "index.js",
"scripts": {
"start": "budo index.js -d --serve bundle.js --live",
"build": "browserify index.js -o bundle.js -g uglifyify",
"test": "browserify test | smokestack | tap-spec",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html,css} dist'",
"push": "gh-pages -d dist",
"deploy": "npm run build && npm run dist && npm run push"
},
"browserify": {
"transform": [
"babelify",
"sheetify/transform"
]
},
"repository": {
"type": "git",
"url": "https://github.com/pietgeursen/conway-redux-vdom"
},
"author": "pietgeursen",
"license": "ISC",
"bugs": {
"url": "https://github.com/pietgeursen/conway-redux-vdom/issues"
},
"homepage": "https://github.com/pietgeursen/conway-redux-vdom",
"dependencies": {
"classnames": "^2.2.0",
"conways": "0.0.1",
"redux": "^3.0.4",
"vdux": "^0.1.8",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^10.0.0",
"budo": "^4.0.0",
"gh-pages": "^0.3.0",
"sheetify": "^3.1.0",
"smokestack": "^3.3.0",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
}
}