-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "create-nightwatch",
"version": "3.4.0",
"description": "Nightwatch.js init command tool to setup everything up in no time using `npm init nightwatch`",
"main": "index.js",
"bin": {
"create-nightwatch": "./index.js"
},
"scripts": {
"setVersion": "node -p \"'export const CURRENT_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/utils/version.ts",
"build": "rimraf dist && npm run setVersion && tsc",
"prepare": "npm run build",
"create-nightwatch": "npm run build && node index.js",
"esbuild": "esbuild --bundle src/index.ts --outdir=dist --platform=node --target=ES2019",
"test": "npm run build && npx nightwatch"
},
"keywords": [],
"author": "Priyansh Garg",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nightwatchjs/create-nightwatch"
},
"devDependencies": {
"@npm/types": "^1.0.2",
"@types/inquirer": "^8.2.1",
"@types/minimist": "^1.2.2",
"@types/mockery": "^1.4.30",
"@types/node": "^17.0.41",
"@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",
"rimraf": "^5.0.5",
"typescript": "^4.7.3"
},
"dependencies": {
"@nightwatch/setup-tools": "^3.4.0",
"ansi-colors": "^4.1.3",
"axios": "^1.6.8",
"inquirer": "^8.2.4",
"minimist": "^1.2.6"
},
"files": [
"dist",
"index.js"
]
}