forked from cypress-io/cypress-chrome-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.55 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": "@cypress/chrome-recorder",
"version": "0.0.0-semantic-release",
"description": "Generate Cypress Tests from Chrome DevTools Recordings",
"bin": "bin/cypress-chrome-recorder.js",
"main": "dist/main.js",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"test": "mocha --config .mocharc.cjs",
"cm": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress-chrome-recorder.git"
},
"keywords": [
"cypress",
"testing",
"automation",
"devtools"
],
"author": "Cypress-io",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/cypress-chrome-recorder/issues"
},
"homepage": "https://github.com/cypress-io/cypress-chrome-recorder#readme",
"dependencies": {
"@puppeteer/replay": "^2.10.2",
"chalk": "^5.0.1",
"execa": "^6.1.0",
"globby": "^13.1.1",
"inquirer": "^8.2.1",
"is-git-clean": "^1.1.0",
"meow": "^10.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/inquirer": "^8.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.6.2"
},
"type": "module",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
}
}