-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "reselect-computed",
"version": "0.1.2",
"description": "Declaratively created computed properties for Redux and Reselect.",
"main": "dist/reselect-computed.cjs.js",
"module": "dist/reselect-computed.esm.js",
"scripts": {
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/reselect-computed.git"
},
"keywords": [
"Redux",
"Reselect"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/reselect-computed/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/reselect-computed#readme",
"dependencies": {
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-jest": "^22.2.2",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"jest": "^22.2.2",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.56.1",
"rollup-plugin-buble": "^0.19.2"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
}
}
}