-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.95 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
67
68
69
{
"author": "Filip Hric (https://filiphric.com/)",
"license": "ISC",
"name": "cypress-plugin-xhr-toggle",
"version": "1.2.1",
"description": "Turn off xhr requests in Cypress timeline",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"files": [
"/dist/*"
],
"scripts": {
"test": "cypress run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "tsc --noEmit && eslint . --max-warnings=15 --quiet",
"semantic-release": "semantic-release",
"start": "node ./server",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"pre-commit": [
"lint"
],
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm"
]
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@replayio/cypress": "^1.7.17",
"@semantic-release/changelog": "^6.0.1",
"@types/node": "^18.11.8",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"cypress": "^12.14.0",
"eslint": "^8.27.0",
"generate-changelog": "^1.8.0",
"husky": "^8.0.2",
"postcss": "^8.4.17",
"pre-commit": "^1.2.2",
"semantic-release": "^19.0.5",
"typescript": "4.5.4"
},
"peerDependencies": {
"cypress": ">=10"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/filiphric/cypress-plugin-xhr-toggle.git"
},
"bugs": {
"url": "https://github.com/filiphric/cypress-plugin-xhr-toggle/issues"
},
"homepage": "https://github.com/filiphric/cypress-plugin-xhr-toggle#readme"
}