-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "redux-search-filter",
"version": "0.6.0",
"description": "",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src rollup.config.js",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "run-s testonly eslint",
"test-only": "jest",
"test-travis": "eslint src && jest --coverage && codecov",
"testonly": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neptunejs/redux-search-filter.git"
},
"keywords": [],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/neptunejs/redux-search-filter/issues"
},
"homepage": "https://github.com/neptunejs/redux-search-filter#readme",
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"/node_modules/(?!lodash-es)"
]
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"codecov": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-cheminfo": "^1.18.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"jest": "^23.2.0",
"npm-run-all": "^4.0.2",
"react": "^16.0.0",
"react-redux": "^5.0.5",
"redux": "^4.0.0",
"rollup": "^0.61.2"
},
"dependencies": {
"immutable": "^3.8.1",
"lodash-es": "^4.17.4",
"ml-array-max": "^1.0.1",
"ml-array-min": "^1.0.1",
"prop-types": "^15.5.10",
"reselect": "^3.0.1"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-redux": ">=5.0.0",
"redux": ">=3.0.0"
}
}