-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
89 lines (89 loc) · 2.64 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
81
82
83
84
85
86
87
88
89
{
"name": "react-redux-ui-state",
"version": "1.1.2",
"description": "React higher order component to provide UI state for components.",
"main": "dist/index.js",
"repository": "https://github.com/jasonmorita/react-redux-ui-state",
"scripts": {
"build": "babel src --out-dir dist --ignore '**/*.test.js','**/__mocks__/*'",
"lint": "eslint .",
"test": "jest src",
"prepublish": "npm run build"
},
"author": "Jason Morita",
"license": "MIT",
"keywords": [
"react",
"redux",
"ui",
"state",
"hoc",
"setState",
"uistate",
"management",
"internal"
],
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-redux": "^4.0.0 || ^5.0.0",
"redux": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"immutability-helper": "^2.1.2",
"lodash": "^4.16.6",
"prop-types": "^15.5.10",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^20.0.3",
"jest-cli": "^20.0.3",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"react": "^16",
"react-dom": "^16",
"react-redux": "^5",
"redux": "^4"
},
"jest": {
"globals": {
"document": true
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./dist"
],
"collectCoverageFrom": [
"src/*.js"
],
"coverageThreshold": {
"global": {
"statements": 100,
"functions": 100,
"lines": 100
}
}
}
}