-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "backbone-redux",
"version": "0.3.0-rc.1",
"description": "Easy way to keep your backbone collections and redux store in sync",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/backbone-redux.js && NODE_ENV=production webpack src/index.js dist/backbone-redux.min.js",
"lint": "eslint src test examples",
"test": "NODE_ENV=test babel-tape-runner test/**/*.js | tap-dot",
"ci": "npm run lint && npm run test",
"prepublish": "npm run ci && npm run clean && npm run build && npm run build:umd"
},
"repository": {
"type": "git",
"url": "https://github.com/redbooth/backbone-redux.git"
},
"keywords": [
"backbone",
"collections",
"redux",
"state",
"functional",
"immutable",
"hot",
"replay"
],
"author": "Ilya Zayats <[email protected]> (http://github.com/somebody32)",
"license": "MIT",
"bugs": {
"url": "https://github.com/redbooth/backbone-redux/issues"
},
"homepage": "https://github.com/redbooth/backbone-redux",
"devDependencies": {
"async": "^2.1.4",
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.1.4",
"babel-tape-runner": "^1.2.0",
"backbone": "^1.2.3",
"eslint": "^1.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.3.1",
"rimraf": "^2.3.4",
"tap-dot": "^1.0.0",
"tape": "^4.2.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"lodash.compact": "^3.0.0",
"lodash.defer": "^4.1.0",
"lodash.flatten": "^3.0.2",
"lodash.groupby": "^3.1.1",
"redux": "^3.0.0"
}
}