forked from nightwatchjs/create-nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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": "create-nightwatch",
"version": "1.1.2",
"description": "A single-command tool to setup Nightwatch.js",
"main": "index.js",
"bin": {
"create-nightwatch": "./index.js"
},
"scripts": {
"build": "tsc",
"create-nightwatch": "tsc && node index.js",
"prepublish": "npm run build",
"test:unit": "npx nightwatch tests/unit_tests",
"test:e2e": "npx nightwatch tests/e2e_tests"
},
"keywords": [],
"author": "Priyansh Garg",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nightwatchjs/create-nightwatch"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/inquirer": "^8.2.1",
"@types/minimist": "^1.2.2",
"@types/mockery": "^1.4.30",
"@types/nightwatch": "^2.0.8",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"mockery": "^2.1.0",
"nightwatch": "^2.1.8",
"typescript": "^4.7.3"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"ejs": "^3.1.8",
"inquirer": "^8.2.4",
"minimist": "^1.2.6",
"json5":"^2.2.1"
}
}