-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 940 Bytes
/
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
{
"name": "reducks",
"version": "0.0.0",
"description": "An example of using redux with react.js",
"main": "index.js",
"scripts": {
"start": "watchify --iw=tests/**/*.js --extension=js -o bundle.js index.js & python -m SimpleHTTPServer",
"test:watch": "watchify -o tests/test-bundle.js tests/unit/* &",
"test": "browserify tests/unit/* | testling -X firefox"
},
"repository": {
"type": "git",
"url": "https://github.com/rjmk/reducks.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rjmk/reducks/issues"
},
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"react-redux": "^3.0.1",
"redux": "^3.0.2"
},
"devDependencies": {
"babelify": "~6.1.2",
"browserify": "~10.2.4",
"tape": "^4.2.0",
"testling": "^1.7.1",
"watchify": "^3.3.1"
}
}