-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
{
"name": "ud-kefir",
"version": "2.2.0",
"description": "Utility to treat code updates as Kefir streams",
"main": "js/index.js",
"sideEffects": false,
"scripts": {
"prepublish": "rimraf js/ && babel -s inline -d js/ src/ && flow-copy-source -v src js",
"test": "yarn run lint && yarn run flow_check && mocha && tsc",
"flow_check": "flow check",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Macil/ud-kefir.git"
},
"keywords": [
"kefir",
"kefir.js",
"frp",
"streams",
"reactive",
"ud",
"livereload",
"live",
"hot",
"reload",
"hmr"
],
"author": "Chris Cowan <agentme49@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Macil/ud-kefir/issues"
},
"homepage": "https://github.com/Macil/ud-kefir#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/kefir": "^3.7.0",
"babel-eslint": "^10.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"eslint": "^6.0.0",
"flow-bin": "^0.100.0",
"flow-copy-source": "^2.0.0",
"kefir": "^3.5.1",
"mocha": "^7.0.1",
"rimraf": "^3.0.0",
"sinon": "^7.2.6",
"typescript": "^3.0.3"
},
"peerDependencies": {
"kefir": "^3.5.1"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@types/node": "^12.0.0",
"ud": "^1.0.1 || ^2.0.0 || ^3.0.0"
},
"greenkeeper": {
"ignore": [
"flow-bin"
]
}
}