This repository was archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.61 KB
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
{
"name": "redux-autoreducers",
"version": "1.0.0",
"description": "Redux Autoreducers",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/ test/",
"test": "shx rm -Rf results && cross-env NODE_ENV=test nyc mocha",
"coverage": "npm run test && npm run coveralls",
"coveralls": "shx cat ./results/coverage/lcov.info | coveralls",
"build": "shx rm -Rf dist && babel src/ -d dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oxyno-zeta/redux-autoreducers.git"
},
"author": "Oxyno-zeta",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oxyno-zeta/redux-autoreducers/issues"
},
"homepage": "https://github.com/oxyno-zeta/redux-autoreducers#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^4.0.2",
"concurrently": "^3.5.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"eslint": "^3.0.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.8.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"shx": "^0.2.2",
"sinon": "^2.3.6",
"sinon-chai": "^2.11.0"
},
"dependencies": {
"capitalize": "^1.0.0",
"type-to-reducer": "^1.0.3"
}
}