-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "redux-channels",
"version": "0.1.0",
"description": "Redux integration for websocket channels",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register --recursive --require ./test/setup.js",
"lint": "eslint --ext .js ./src",
"clean": "rm -rf ./dist",
"compile": "npm run clean && babel ./src --out-dir ./dist",
"build": "npm run compile"
},
"author": "Daniel Farrell <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^15.1.0",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.1",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0"
},
"dependencies": {
"invariant": "^2.2.1",
"lodash.isequal": "^4.2.0",
"lodash.isobject": "^3.0.2",
"object-assign": "^4.1.0",
"react-redux": "^4.4.5"
}
}