-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.42 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@saninn/cypress-ionic",
"version": "0.2.2",
"description": "A set of functions to help you interact with Ionic Framework elements in your Cypress tests",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky install && ts-patch install -s",
"serve": "tsx ./scripts/serve.mjs",
"develop": "start-server-and-test serve http://localhost:3999 test-open",
"test-open": "cypress open",
"test": "cypress run",
"test-ci": "cypress run --config video=false",
"full-test": "start-server-and-test serve http://localhost:3999 test-ci",
"ci": "tsx --experimental-json-modules ./scripts/test.mjs",
"build": "tsc --project tsconfig.json",
"make-docs": "typedoc",
"tsc:check": "tsc --noEmit",
"prettier:check": "prettier --config ./.prettierrc ./src --check",
"release": "release-it --verbose --ci",
"release:patch": "release-it patch --verbose --ci",
"release:minor": "release-it minor --verbose --ci",
"release:major": "release-it major --verbose --ci",
"release:prepatch": "release-it prepatch --verbose --ci",
"release:preminor": "release-it preminor --verbose --ci",
"release:premajor": "release-it premajor --verbose --ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/distante/cypress-ionic.git"
},
"bugs": {
"url": "https://github.com/distante/cypress-ionic/issues"
},
"keywords": [
"cypress",
"ionic",
"testing",
"integration tests",
"end to end tests",
"e2e"
],
"author": "Saninn Salas Diaz",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@compodoc/live-server": "^1.2.2",
"@ionic/core": "^7.7.2",
"@testing-library/cypress": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chalk": "^5.0.0",
"cypress": "^13.6.4",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2",
"release-it": "^17.0.5",
"start-server-and-test": "^2.0.3",
"ts-patch": "^2.0.1",
"tslib": "^2.3.1",
"tsx": "^4.7.1",
"typedoc": "^0.22.10",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.2",
"typescript-transform-paths": "^3.3.1"
},
"peerDependencies": {
"@ionic/core": ">= 7.0.0",
"@testing-library/cypress": ">= 9.0.0",
"cypress": ">= 9.0.0"
},
"oldSupportedVersions": {
"ionicCore5": "^6.0.0"
},
"release-it": {
"hooks": {
"before:init": "npm run build && npm run ci",
"after:bump": "npx typedoc && git add ./docs && git commit -m 'docs: pre-release docs'",
"after:release": "echo Successfully released ${name} v${version} to https://${repo.host}/${repo.repository}/releases/tag/v${version}"
},
"git": {
"commitMessage": "release: v${version}",
"tagName": "v${version}",
"tagAnnotation": "Release v${version}"
},
"github": {
"release": true,
"releaseName": "${version}",
"assets": []
}
},
"volta": {
"node": "20.11.0"
}
}