forked from just-paja/redux-entity-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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": "redux-entity-store",
"version": "0.3.9",
"description": "Keep your domain objects in one place",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib --ignore **/__tests__/*.js,**/__tests__/*.jsx",
"clean": "rimraf lib",
"prepack": "npm test && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/just-paja/redux-entity-store.git"
},
"keywords": [
"redux",
"operations",
"store",
"entity",
"routine",
"action"
],
"author": "Pavel Žák <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/just-paja/redux-entity-store/issues"
},
"homepage": "https://github.com/just-paja/redux-entity-store#readme",
"dependencies": {
"camelcase": "^5.3.1",
"jsonpath": "^1.0.2",
"redux": "^4.0.4",
"reselect": "^4.0.0"
},
"files": [
"index.d.ts",
"lib",
"LICENSE",
"README.md"
],
"standard": {
"env": [
"jest"
],
"parser": "babel-eslint"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-eslint": "^10.0.3",
"jest": "^24.9.0",
"jest-runner-standard": "0.0.13",
"rimraf": "^3.0.0",
"standard": "^14.3.1"
}
}