-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "react-again",
"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/index.js | node | 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"
]
},
"repository": {
"type": "git",
"url": "https://github.com/pietgeursen/react-again"
},
"author": "pietgeursen",
"license": "ISC",
"bugs": {
"url": "https://github.com/pietgeursen/react-again/issues"
},
"homepage": "https://github.com/pietgeursen/react-again",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"budo": "^11.6.0",
"gh-pages": "^0.11.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"uglifyify": "^3.0.1",
"watchify": "^3.7.0"
}
}