-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 929 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
{
"name": "redux-structures",
"version": "0.1.0",
"description": "Reusable redux data structures",
"main": "build/index.js",
"scripts": {
"test": "babel-tape-runner 'src/**/test/*.test.js' | faucet",
"test:ugly": "babel-tape-runner 'src/**/test/*.test.js'",
"build": "babel src --out-dir build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thk2b/redux-structures.git"
},
"keywords": [
"redux",
"structures"
],
"author": "thk2b",
"license": "MIT",
"bugs": {
"url": "https://github.com/thk2b/redux-structures/issues"
},
"homepage": "https://github.com/thk2b/redux-structures#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"faucet": "^0.0.1",
"redux": "^3.7.2",
"tape": "^4.9.0"
}
}