-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.2 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "reducer-generator-object-map",
"version": "1.1.3",
"description": "A redux reducer-generator that builds a redux-reducer which matches against object literals.",
"main": "dist/reducer-generator-object-map.js",
"author": "Braden R. Napier",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha --recursive --require ./test/setup.js ./test/tests/*.js",
"compile": "projectz compile",
"posttest": "npm run compile",
"prepublish": "npm run test && npm run build:prod",
"build:prod": "cross-env NODE_ENV=production BABEL_ENV=production babel-node config/scripts/build",
"build": "babel-node config/scripts/build",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"react",
"react-native",
"react-redux",
"redux",
"reducer",
"generator",
"redux-saga",
"saga-process",
"redux-saga-process",
"reducer-generator"
],
"repository": {
"type": "git",
"url": "https://github.com/Dash-OS/reducer-generator-object-map.git"
},
"bugs": {
"url": "https://github.com/Dash-OS/reducer-generator-object-map/issues"
},
"badges": {
"list": [
"npmversion",
"npmdownloads",
"daviddm",
"travisci",
"coveralls",
"paypal",
"githubfollow",
"hackernewssubmit",
"redditsubmit",
"twittertweet",
"githubstar"
],
"config": {
"paypalURL": "https://paypal.me/bradynapier",
"githubUsername": "bradennapier",
"githubSlug": "reducer-generator-object-map"
}
},
"devDependencies": {
"app-root-dir": "^1.0.2",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-babili": "^0.1.2",
"babel-preset-env": "^1.5.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babili-webpack-plugin": "^0.1.1",
"chai": "^4.0.2",
"colors": "^1.1.2",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-formatter-pretty": "^1.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-compat": "^1.0.3",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-flowtype-errors": "^3.3.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"expect": "^1.20.2",
"happypack": "^3.1.0",
"lodash-webpack-plugin": "^0.11.4",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"projectz": "^1.4.0",
"rimraf": "^2.6.1",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0",
"yargs": "^8.0.1"
},
"nyc": {
"check-coverage": true,
"produce-source-map": true,
"reporter": [
"lcov",
"text"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"maintainers": [
"Braden Napier (https://github.com/bradennapier)"
],
"contributors": [
"Braden Napier (https://github.com/bradennapier)"
]
}