-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "cycle-delayed-driver",
"version": "1.1.0",
"description": "Create a driver in the future as a response to a specific event",
"main": "lib/cycle-delayed-driver.js",
"scripts": {
"example": "budo example/index.js:bundle.js -d example --live -- -t babelify",
"debug-test": "mocha --require babel-register --inspect --debug-brk",
"test": "eslint . && mocha --require babel-register",
"precompile-lib": "rm -rf lib/ && mkdir lib",
"compile-lib": "babel src -d lib",
"prepare": "npm run compile-lib"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyclejs-community/cycle-delayed-driver.git"
},
"keywords": [
"cycle",
"cycle.js",
"driver",
"delayed"
],
"author": "Guy Rozen",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclejs-community/cycle-delayed-driver/issues"
},
"homepage": "https://github.com/cyclejs-community/cycle-delayed-driver",
"dependencies": {
"@cycle/run": "^3.3.0"
},
"devDependencies": {
"@cycle/dom": "^18.2.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"babelify": "^7.3.0",
"budo": "^10.0.0",
"chai": "^4.0.0",
"chai-spies": "^0.7.1",
"cycle-canvas": "^0.6.0",
"dirty-chai": "^2.0.1",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"xstream": "^11.0.0"
}
}