-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
{
"name": "@nightwatch/chrome-recorder",
"version": "0.2.2",
"description": "Generate Nightwatch Tests from Google Chrome DevTools Recordings",
"main": "dist/main.js",
"bin": "bin/nightwatch-chrome-recorder.js",
"files": [
"bin",
"dist"
],
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"watch": "tsc -w",
"lint": "eslint '**/*.{js,ts}' --fix .",
"prettier": "prettier --write .",
"format": "npm run lint && npm run prettier",
"test": "mocha --config .mocharc.cjs",
"docs": "npx typedoc --readme none --gitRevision main --externalPattern --excludeExternals --excludeProtected --excludePrivate --plugin typedoc-plugin-markdown --out docs/ src/main.ts && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nightwatchjs/nightwatch-chrome-recorder.git"
},
"keywords": [
"nightwatch",
"testing",
"e2e",
"automation",
"devtools"
],
"author": "Vaibhav Singh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nightwatchjs/nightwatch-chrome-recorder/issues"
},
"homepage": "https://github.com/nightwatchjs/nightwatch-chrome-recorder#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/inquirer": "^9.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint": "^8.32.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"@puppeteer/replay": "^2.7.1",
"chalk": "^5.2.0",
"globby": "^13.1.3",
"inquirer": "^9.1.4",
"meow": "^11.0.0",
"prettier": "^2.8.3"
}
}