-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1002 Bytes
/
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
{
"name": "cooldux",
"version": "0.14.0",
"description": "Redux ducks pattern helpers",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"test": "istanbul cover _mocha && npm run check-coverage",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --lines 100 --functions 100",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/iceddev/cooldux.git"
},
"keywords": [
"redux",
"ducks",
"react"
],
"author": "Luis Montes",
"license": "ISC",
"bugs": {
"url": "https://github.com/iceddev/cooldux/issues"
},
"homepage": "https://github.com/iceddev/cooldux#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"rollup": "^0.61.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-uglify": "^4.0.0"
}
}