forked from apoco/cycle-electron-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "cycle-electron-driver",
"version": "1.0.0",
"description": "Cycle.js driver for electron apps",
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/apoco/cycle-electron-driver#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/apoco/cycle-electron-driver.git"
},
"bugs": {
"url": "https://github.com/apoco/cycle-electron-driver/issues"
},
"keywords": [
"cycle.js",
"electron"
],
"peerDependencies": {
"@cycle/core": "^6.0.0",
"electron-prebuilt": "^0.36.0",
"rx": "^4.0.0"
},
"devDependencies": {
"@cycle/core": "^6.0.2",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.0",
"bluebird": "^3.3.1",
"chai": "^3.5.0",
"electron-prebuilt": "^0.36.7",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"rx": "^4.0.7",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"scripts": {
"test": "mocha --compilers js:babel-register --recursive ./test/specs",
"coverage": "istanbul cover _mocha -- --compilers js:babel-register --recursive ./test/specs",
"build": "babel src -d lib",
"prepublish": "npm run build"
}
}