-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.06 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
{
"name": "redux-fp",
"version": "0.2.0",
"description": "Functional programming helpers for Redux.",
"main": "dist/redux-fp.js",
"module": "dist/redux-fp.mjs",
"jsnext:main": "dist/redux-fp.mjs",
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c && babili --source-maps=true -o dist/redux-fp.min.js dist/redux-fp.js",
"pretest": "rm -rf coverage",
"test": "eslint . && jest",
"predocs": "rm -rf docs",
"docs": "mkdir -p docs && documentation build src/index.js -f md -o docs/API.md",
"prepublish": "in-publish && (npm run all) || echo 'Not in-publish'",
"all": "npm test && npm run build && npm run docs",
"clean": "npm run pretest && npm run prebuild && npm run predocs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvikmanis/redux-fp.git"
},
"keywords": [
"redux",
"lodash",
"ramda",
"functional",
"currying",
"curry",
"curried",
"reducer",
"reducers",
"updater",
"updaters"
],
"author": "Rudolfs Vikmanis",
"license": "MIT",
"bugs": {
"url": "https://github.com/rvikmanis/redux-fp/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/rvikmanis/redux-fp#readme",
"dependencies": {
"in-publish": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "6.1.2",
"babel-jest": "^15.0.0",
"babel-plugin-external-helpers": "6.8.0",
"babel-plugin-transform-flow-strip-types": "6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "6.13.2",
"babel-register": "6.11.6",
"babelrc-rollup": "3.0.0",
"babili": "0.0.10",
"compose-function": "^3.0.3",
"documentation": "4.0.0-beta.18",
"dot-prop-immutable": "^1.3.1",
"eslint": "3.2.2",
"flow-bin": "0.30.0",
"jest-cli": "18.1.0",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^2.5.0"
},
"jest": {
"coverageDirectory": "coverage",
"collectCoverage": true,
"verbose": true
}
}