forked from indexiatech/redux-immutablejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "redux-immutablejs",
"version": "0.0.8",
"description": "Redux Immutable facilities",
"scripts": {
"start": "node server.js",
"test": "mocha --recursive --compilers js:babel-core/register",
"test:watch": "npm test -- --watch",
"build:lib": "babel src --out-dir lib",
"prepublish": "npm run build:lib",
"build:publish": "npm publish"
},
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/indexiatech/redux-immutable.git"
},
"author": "Indexia Tech",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/indexiatech/redux-immutablejs/issues"
},
"homepage": "http://indexiatech.github.io/redux-immutable",
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0",
"immutable": "^3.7.5"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.6.18",
"babel-loader": "^5.1.4",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.3.1",
"expect": "^1.9.0",
"immutable": "^3.7.5",
"mocha": "^2.3.3",
"node-libs-browser": "^0.5.2",
"redux": "^3.0.0",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
}
}