-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "redux-scuttlebutt",
"version": "0.3.5",
"description": "Redux distributed dispatcher",
"main": "lib/index.js",
"engines": {
"node": ">=6.0"
},
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/index.js",
"build:umd:min": "BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/index.min.js",
"build": "npm run build:commonjs # && npm run build:umd && npm run build:umd:min",
"test": "node test | tap-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/grrowl/redux-scuttlebutt.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/grrowl/redux-scuttlebutt/issues"
},
"homepage": "https://github.com/grrowl/redux-scuttlebutt",
"dependencies": {
"lodash": "^4.14.0",
"primus": "^6.0.5",
"scuttlebutt-vector": "^6.0.0",
"ws": "^1.1.1"
},
"peerDependencies": {
"primus": "^6.0.0",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"eslint-plugin-react": "^6.4.1",
"expect": "^1.6.0",
"express": "^4.13.3",
"sinon": "^1.17.6",
"tap-spec": "^4.1.1",
"tape": "^4.6.0"
},
"npmName": "redux-scuttlebutt",
"npmFileMap": [
{
"basePath": "/lib/",
"files": [
"*.js"
]
}
]
}