-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "kefir.combines",
"version": "4.5.1",
"description": "Special purpose applicative Kefir combinator",
"main": "dist/kefir.combines.cjs.js",
"module": "dist/kefir.combines.es.js",
"sideEffects": false,
"scripts": {
"dist": "rollup -c",
"lint": "eslint src test",
"prepare": "npm run lint && npm run dist && npm run test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "nyc mocha && nyc report -r html mocha",
"watch": "concurrently \"npm run watch:dist\" \"npm run watch:test\"",
"watch:dist": "watch-run -d 50 -i -p 'src/**/*.js' npm run dist",
"watch:test": "watch-run -d 50 -p 'dist/kefir.combines.cjs.js,test/*.js' npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calmm-js/kefir.combines.git"
},
"keywords": [
"kefir"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/calmm-js/kefir.combines/issues"
},
"homepage": "https://github.com/calmm-js/kefir.combines#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-annotate-pure-calls": "^0.2.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"codecov": "^3.0.1",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"kefir": "^3.8.3",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"partial.lenses": "^13.11.0",
"ramda": "^0.25.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"watch-run": "^1.2.5"
},
"dependencies": {
"infestines": "^0.4.7"
},
"peerDependencies": {
"kefir": "^3.7.0"
}
}