-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.34 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
72
73
74
75
76
77
78
79
80
{
"name": "react-redux-json-api",
"version": "0.1.0",
"description": "Easy data handling for redux-json-api",
"browser": "lib/index.js",
"main": "lib/index.js",
"author": "Ronni Egeriis Persson <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:redux-json-api/redux-json-api-scope.git"
},
"bugs": {
"url": "https://github.com/redux-json-api/redux-json-api-scope/issues"
},
"homepage": "https://github.com/redux-json-api/redux-json-api-scope#readme",
"scripts": {
"build": "yarn run ci && rimraf lib/* && rollup -c",
"ci": "yarn run test && yarn run lint",
"lint": "eslint \"src/**\"",
"test": "jest"
},
"jest": {
"setupTestFrameworkScriptFile": "jest-enzyme",
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
},
"testMatch": [
"**/__tests__/**/*.test.js"
],
"verbose": true
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-jest-enzyme": "^6.0.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.79.1",
"flow-typed": "^2.5.1",
"jest": "^22.4.3",
"jest-environment-enzyme": "^6.0.0",
"jest-enzyme": "^6.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.56.4",
"rollup-plugin-babel": "^3.0.7"
},
"dependencies": {
"react-redux": "^5.0.7",
"redux-json-api": "^2.0.0",
"reselect": "^3.0.1"
},
"peerDependencies": {
"babel-runtime": "^6.26.0",
"react": "^16.3.2"
}
}