-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.34 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
{
"name": "karet.fr",
"version": "0.1.0",
"description": "An observable wrapper for XMLHttpRequest using Kefir",
"module": "dist/karet.fr.es.js",
"main": "dist/karet.fr.cjs.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": "npm run test:bundle && node test/server.js && nyc report && nyc report -r html mocha",
"test:bundle": "nyc instrument dist/karet.fr.es.js test/generated && rollup -c test/rollup.config.js",
"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/karet.fr.es.js,test/*.js' npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calmm-js/karet.fr.git"
},
"keywords": [
"direct-style",
"kefir",
"observable",
"property",
"reactive"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/calmm-js/karet.fr/issues"
},
"homepage": "https://github.com/calmm-js/karet.fr#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"codecov": "^3.2.0",
"concurrently": "^4.1.0",
"eslint": "^5.13.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"karet": "^4.1.0",
"karet.util": "^0.19.1",
"kefir": "^3.8.6",
"mocha": "^5.2.0",
"mocha-headless-chrome": "^2.0.2",
"nyc": "^12.0.2",
"ramda": "^0.26.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"watch-run": "^1.2.5"
},
"dependencies": {
"infestines": "^0.4.10",
"karet.lift": ">=1.1.1 <3.0.0",
"kefir.partial.lenses": ">=13.14.1 <15.0.0"
},
"peerDependencies": {
"kefir": "^3.7.0"
}
}