-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.7 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
90
91
{
"name": "redux-namespaces",
"version": "0.0.2",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"description": "Namespaces for Redux actions, reducers and state.",
"keywords": [
"redux",
"namespace",
"multiple",
"action",
"reducer",
"state"
],
"author": "9Technology <opensource@nine.com.au>",
"repository": {
"type": "git",
"url": "git+https://github.com/9technology/redux-namespaces.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/9technology/redux-namespaces/issues"
},
"scripts": {
"clean": "rimraf lib dist",
"prepublish": "npm run build",
"build": "npm run clean && npm run build:lib && npm run build:dist && npm run build:min",
"build:lib": "cross-env BABEL_ENV=lib babel -d lib src",
"build:dist": "cross-env BABEL_ENV=dist rollup -c -i src/index.js -o dist/redux-namespaces.js",
"build:min": "uglifyjs -c -m -o dist/redux-namespaces.min.js dist/redux-namespaces.js",
"lint": "eslint src",
"pretest": "npm run lint",
"test": "jest"
},
"dependencies": {
"array-flatten": "^2.1.1",
"invariant": "^2.2.2",
"is-empty": "^1.2.0",
"is-function": "^1.0.1",
"is-string": "^1.0.4",
"object.omit": "^2.0.1",
"reduce-reducers": "^0.1.2",
"starts-with": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.6",
"cross-env": "^5.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"flow-bin": "^0.49.1",
"flow-typed": "^2.1.2",
"jest": "^24.8.0",
"react": "^15.5.3",
"react-dom": "^15.5.3",
"redux": "^3.7.0",
"rimraf": "^2.6.1",
"rollup": "^0.60.0",
"rollup-plugin-babel": "^4.0.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"uglify-js": "^3.0.18"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"src/index.js"
]
}
}