forked from cucumber/cucumber-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "@cucumber/electron",
"version": "3.0.0-rc.0",
"description": "Runs cucumber.js in electron",
"main": "index.js",
"license": "MIT",
"bin": {
"cucumber-electron": "./bin/cucumber-electron.js"
},
"scripts": {
"ci": "cucumber-js && node ./bin/cucumber-electron.js",
"test": "npm run eslint && cucumber-js && node ./bin/cucumber-electron.js",
"eslint": "eslint \"**/*.js\"",
"update-dependencies": "npx npm-check-updates --upgrade --dep prod,dev,optional,bundle"
},
"author": "Josh Chisholm <[email protected]>",
"contributors": [
"Josh Chisholm <[email protected]>",
"Aslak Hellesøy <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/cucumber/cucumber-electron.git"
},
"dependencies": {
"ansi-to-html": "^0.6.14",
"electron-window": "^0.8.1"
},
"peerDependencies": {
"@cucumber/cucumber": "^7.0.0-rc.0",
"electron": ">=8.2.0 <11"
},
"devDependencies": {
"@cucumber/cucumber": "^7.0.0-rc.0",
"colors": "^1.4.0",
"debug": "^4.2.0",
"del": "^6.0.0",
"electron": "^10.1.3",
"eslint": "^7.11.0",
"mkdirp": "^1.0.4"
}
}