-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
71 lines (71 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@shoutem/redux-io",
"version": "3.2.5",
"description": "Action creators, reducers and middleware for simple handling of normalized json api data in state",
"main": "index.js",
"scripts": {
"lint": "eslint src test",
"test": "mocha --require babelTestSetup --reporter spec --recursive test",
"coverage": "babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- -R spec --recursive test",
"move": "copyfiles package.json LICENSE README.md .npmignore lib",
"build": "babel src --out-dir lib && npm run move"
},
"repository": {
"type": "git",
"url": "https://github.com/shoutem/redux-io"
},
"keywords": [
"redux",
"json-api",
"normalize",
"denormalize",
"simple",
"crud"
],
"author": "Shoutem",
"license": "MIT",
"bugs": {
"url": "https://github.com/shoutem/redux-io/issues"
},
"homepage": "https://github.com/shoutem/redux-io#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.8.6",
"babel-eslint": "^6.0.0",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.2.0",
"chai-shallow-deep-equal": "^1.4.6",
"copyfiles": "^1.2.0",
"cross-fetch": "^3.0.4",
"deep-freeze": "0.0.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"estraverse-fb": "^1.3.1",
"isparta": "^4.0.0",
"istanbul": "0.4.4",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"redux-mock-store": "^1.5.4",
"sinon": "^9.0.1"
},
"dependencies": {
"@shoutem/json-api-denormalizer": "^0.4.2",
"lodash": "^4.17.15",
"memoize-one": "^5.1.1",
"redux": "^4.0.5",
"redux-api-middleware": "^3.2.1",
"redux-batched-actions": "^0.4.1",
"redux-thunk": "^2.3.0",
"urijs": "^1.19.2",
"uuid-random": "^1.3.0",
"vedrani-json-api-normalizr": "^3.2.4",
"z-schema": "^3.17.0"
}
}