-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "redux-entities",
"version": "2.0.0",
"description": "Higher-order reducer for store entities received from normalizr and makes it easy to handle them.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --recursive",
"eslint": "eslint ./src/*.js",
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsmepetrov/redux-entities.git"
},
"keywords": [
"redux",
"reducer",
"entities",
"normalizr",
"flux"
],
"author": "Anton Petrov <petrov.aap@gmail.com> (http://github.com/itsmepetrov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/itsmepetrov/redux-entities/issues"
},
"homepage": "https://github.com/itsmepetrov/redux-entities#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.4.0",
"mocha": "^3.0.2",
"rimraf": "^2.4.3"
},
"dependencies": {
"lodash": "^4.11.2"
}
}