forked from bahmutov/cy-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.61 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": "@bahmutov/cy-api",
"version": "0.0.0-development",
"description": "Custom command cy.api",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"files": [
"/dist/*"
],
"scripts": {
"test": "cypress run",
"cy:open": "cypress open",
"start": "node -r @bahmutov/all-logs ./server",
"e2e": "start-test 3003",
"dev": "start-test 3003 cy:open",
"semantic-release": "semantic-release",
"stop-only": "stop-only --folder cypress",
"warn-only": "stop-only --warn --folder cypress",
"build": "tsc",
"build:watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cy-api.git"
},
"keywords": [
"cypress",
"cypress-io",
"cy-api"
],
"author": "Gleb Bahmutov <[email protected]> (https://glebbahmutov.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/cy-api/issues"
},
"homepage": "https://github.com/bahmutov/cy-api#readme",
"devDependencies": {
"@types/node": "17.0.18",
"cypress": "9.5.3",
"express": "4.17.1",
"husky": "3.1.0",
"typescript": "4.5.4",
"semantic-release": "19.0.2",
"start-server-and-test": "1.14.0",
"stop-only": "3.1.0",
"@bahmutov/all-logs": "1.8.1",
"debug": "4.3.1"
},
"peerDependencies": {
"cypress": ">=3"
},
"dependencies": {
"@types/common-tags": "1.8.1",
"common-tags": "1.8.2",
"highlight.js": "11.4.0"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm run warn-only",
"pre-push": "npm run stop-only && npm run e2e"
}
}
}