-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "ld-redux-components",
"version": "1.2.0",
"description":
"Launch Darkly Helper Components that leverage redux",
"main": "build/index.js",
"repository": "https://github.com/wheniwork/ld-redux-components.git",
"author": "Max Lund <[email protected]>",
"license": "MIT",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir build",
"clean": "rimraf build",
"prepare": "yarn clean",
"lint": "./node_modules/.bin/eslint src test spec example",
"unit": "./node_modules/.bin/jest",
"test": "yarn lint && yarn unit"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js",
"testPathIgnorePatterns": ["<rootDir>/example/"],
"coveragePathIgnorePatterns": ["/node_modules/", "<rootDir>/test/"]
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-redux": "^5.0.7"
},
"peerDependencies": {
"react": "^16.3.2",
"redux": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"prettier-eslint": "^8.8.1",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.1",
"rimraf": "^2.6.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}