-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "cypress-tags",
"version": "1.2.2",
"description": "Use custom tags to slice up Cypress test runs.",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "npm run cy:run && mocha"
},
"author": "Anna Thomas",
"license": "ISC",
"files": [
"dist/**/*",
"types/**/*"
],
"prepare": "npm run build",
"postversion": "git push && git push --tags",
"repository": {
"type": "git",
"url": "https://github.com/infosum/cypress-tags.git"
},
"dependencies": {
"@cypress/browserify-preprocessor": "^3.0.2",
"boolean-parser": "0.0.2",
"through": "^2.3.8"
},
"devDependencies": {
"@types/browserify": "^12.0.40",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"@types/through": "0.0.30",
"chai": "^4.3.16",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"tsify": "^5.0.4",
"typescript": "^4.9.5"
},
"peerDependencies": {
"cypress": ">= 6.0.0"
},
"keywords": [
"cypress",
"tags",
"tagging",
"markers",
"test",
"testing"
]
}