-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
91 lines (91 loc) · 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"author": "Filip Hric (https://filiphric.com/)",
"license": "ISC",
"name": "cypress-plugin-api",
"version": "2.11.1",
"keywords": [
"cypress",
"api",
"testing",
"plugin"
],
"description": "UI for testing API in Cypress",
"main": "dist/support.js",
"types": "dist/types.d.ts",
"files": [
"/dist/*"
],
"scripts": {
"test": "cypress run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"start": "node ./server",
"build": "vite build",
"build:watch": "vite build --watch",
"lint": "tsc --noEmit && eslint . --max-warnings=15 --quiet",
"semantic-release": "semantic-release",
"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",
"@rollup/plugin-typescript": "^11.0.0",
"@semantic-release/changelog": "^6.0.1",
"@types/node": "^18.11.8",
"@types/prismjs": "^1.26.0",
"@types/set-cookie-parser": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitejs/plugin-vue": "^3.1.0",
"autoprefixer": "^10.4.12",
"cypress": "^12.5.1",
"eslint": "^8.27.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-vue": "^9.7.0",
"express": "4.17.1",
"generate-changelog": "^1.8.0",
"husky": "^8.0.2",
"postcss": "^8.4.17",
"pre-commit": "^1.2.2",
"semantic-release": "^19.0.5",
"standard-version": "^9.5.0",
"tailwindcss": "^3.1.8",
"typescript": "4.5.4",
"vite": "^3.1.4"
},
"peerDependencies": {
"cypress": ">=10"
},
"dependencies": {
"highlight.js": "11.4.0",
"prismjs": "^1.29.0",
"set-cookie-parser": "^2.5.1",
"vue": "^3.2.41"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/filiphric/cypress-plugin-api.git"
},
"bugs": {
"url": "https://github.com/filiphric/cypress-plugin-api/issues"
},
"homepage": "https://github.com/filiphric/cypress-plugin-api#readme"
}