-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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": "slush-test",
"version": "1.0.0",
"description": "it's a real sweet app",
"main": "index.js",
"scripts": {
"start": "budo . -d --serve bundle.js --live",
"build": "browserify . -o bundle.js -g uglifyify",
"test": "browserify test.js | 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": []
},
"repository": {
"type": "git",
"url": "https://github.com/irenerobb72/slush-test"
},
"author": "irenerobb72",
"license": "ISC",
"bugs": {
"url": "https://github.com/irenerobb72/slush-test/issues"
},
"homepage": "https://github.com/irenerobb72/slush-test",
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^1.0.3"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"browserify": "^10.0.0",
"budo": "^4.0.0",
"gh-pages": "^0.3.0",
"smokestack": "^3.3.0",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
}
}