-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "use-combined-reducers",
"version": "1.0.4",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode=production",
"prepare": "npm run build",
"test": "nyc mocha --require @babel/register 'src/**/**spec.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"author": "“Robin <hello@rwieruch.com”> (https://www.robinwieruch.de)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.4.4",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-road-to-learn-react/use-combined-reducers.git"
},
"bugs": {
"url": "https://github.com/the-road-to-learn-react/use-combined-reducers/issues"
},
"homepage": "https://github.com/the-road-to-learn-react/use-combined-reducers#readme",
"dependencies": {
"sinon": "^7.3.2"
}
}