forked from r-park/todo-react-redux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 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
{
"name": "prospect-source",
"version": "0.0.0",
"description": "Prospect Source project",
"main": "index.js",
"scripts": {
"setup": "nvm i 6; nvm use 6",
"postinstall": "npm run build",
"build": "npm test && webpack",
"watch": "webpack -w",
"test": "mocha test --recursive",
"gh-pages": "rimraf ./dist/ && npm run build && cp ./example/index.html ./dist/ && cd ./dist && git init && git commit --allow-empty -m 'Update docs and examples' && git checkout -b gh-pages && git add . && git commit -am 'Update docs and examples' && git push https://github.com/joshmccall221/prospect-source.git gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riojack/todo-react-redux.git"
},
"keywords": [],
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/riojack/todo-react-redux/issues"
},
"homepage": "https://github.com/riojack/todo-react-redux#readme",
"engines": {
"node": ">=>6.0.0"
},
"devDependencies": {
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"chance": "^1.0.6",
"enzyme": "^2.7.1",
"express": "^4.14.1",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.6.0",
"webpack": "^2.2.1"
}
}