-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "@cucumber/electron",
"version": "4.1.3",
"description": "Runs cucumber.js in electron",
"main": "src/index.js",
"types": "@types/cucumber-electron/api/index.d.ts",
"license": "MIT",
"bin": {
"cucumber-electron": "./bin/cucumber-electron.js"
},
"scripts": {
"test": "npm run eslint && npm run ci",
"ci": "npm run mocha && npm run cucumber-electron && npm run cucumber",
"mocha": "mocha",
"cucumber-electron": "node ./bin/cucumber-electron.js --tags \"not @wip\"",
"cucumber": "cucumber-js --tags \"not @wip\"",
"build": "tsc",
"eslint": "eslint \"**/*.js\"",
"eslint:fix": "eslint \"**/*.js\" --fix"
},
"author": "Josh Chisholm <joshuachisholm@gmail.com>",
"contributors": [
"Aslak Hellesøy <aslak.hellesoy@gmail.com>",
"Josh Chisholm <joshuachisholm@gmail.com>",
"Julien Biezemans <jb@jbpros.com>",
"Romain Gérard <romaingweb@gmail.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/cucumber/cucumber-electron.git"
},
"dependencies": {
"ansi-to-html": "^0.7.2"
},
"peerDependencies": {
"@cucumber/cucumber": "^7.3.1",
"electron": ">=12 <14"
},
"devDependencies": {
"@cucumber/cucumber": "7.3.1",
"@types/jsdom": "16.2.13",
"@types/mocha": "9.0.0",
"colors": "1.4.0",
"debug": "4.3.2",
"del": "6.0.0",
"electron": "24.1.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jsdom": "18.0.0",
"mkdirp": "1.0.4",
"mocha": "9.2.2",
"prettier": "2.4.1",
"ts-node": "10.3.0",
"typescript": "4.4.4"
}
}