-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.57 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
{
"name": "@nightwatch/setup-tools",
"version": "3.4.0",
"description": "Package containing Nightwatch setup utilities",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc --outDir dist",
"create-nightwatch": "tsc && node dev-run.js",
"esbuild": "esbuild --bundle src/index.ts --outdir=dist --platform=node --target=ES2019",
"test:unit": "npm run build && npx nightwatch test/unit_tests",
"test:e2e": "npm run build && npx nightwatch test/e2e_tests"
},
"keywords": [],
"author": "Priyansh Garg, Binayak Ghosh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nightwatchjs/create-nightwatch"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/ejs": "^3.1.1",
"@types/inquirer": "^8.2.1",
"@types/minimist": "^1.2.2",
"@types/mockery": "^1.4.30",
"@types/node": "^17.0.41",
"@types/npmcli__package-json": "^2.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.27.0",
"mocha": "^10.1.0",
"mockery": "^2.1.0",
"nightwatch": "^3.6.2",
"nock": "^13.2.9",
"typescript": "^4.7.3"
},
"dependencies": {
"@nightwatch/mobile-helper": "^0.1.13",
"@npmcli/package-json": "^3.1.1",
"ansi-colors": "^4.1.3",
"boxen": "5.1.2",
"cli-progress": "^3.11.2",
"ejs": "^3.1.10",
"inquirer": "^8.2.4",
"minimist": "^1.2.6",
"node-downloader-helper": "^2.1.6",
"uuid": "^9.0.0"
}
}