-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1014 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
38
39
{
"name": "infinite-reducer",
"version": "1.0.5",
"description": "To infinity and beyond! Reuse your reducer an infinite amount of times!",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "NODE_ENV=build rollup --config ./rollup.config.js",
"prepublishOnly": "yarn install && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/TaeKimJR/infinite-reducer.git"
},
"keywords": [
"react",
"redux",
"reducer",
"infinite-reducer"
],
"author": "Tae Kim",
"license": "MIT",
"bugs": {
"url": "https://github.com/TaeKimJR/infinite-reducer/issues"
},
"homepage": "https://github.com/TaeKimJR/infinite-reducer#readme",
"devDependencies": {
"babel": "6.23.0",
"babel-jest": "22.4.1",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-env": "1.6.1",
"jest": "22.4.2",
"rollup": "0.56.3",
"rollup-plugin-babel": "3.0.3"
},
"dependencies": {
"ramda": "0.25.0"
}
}