-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "cucumber-nightwatch",
"description": "Example for using Nightwatch.js with cucumber-js CLI",
"scripts": {
"test": "cucumber-js --publish",
"lint": "eslint . && prettier --check .",
"lint-fix": "eslint --fix . && prettier --write .",
"prepare": "husky install",
"postinstall": "patch-package"
},
"author": "Tim Yao",
"license": "ISC",
"dependencies": {
"@cucumber/cucumber": "^8.11.1",
"@cucumber/pretty-formatter": "^1.0.0",
"@tsconfig/node16": "^1.0.3",
"@types/nightwatch": "^2.3.18",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"chromedriver": "*",
"cucumber-nightwatch": "^1.0.0-alpha.6",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"geckodriver": "^3.2.0",
"nightwatch": "^2.6.14",
"patch-package": "^6.5.1",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"husky": "^8.0.0"
}
}