forked from cypress-io/cypress-skip-test
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "@cypress/skip-test",
"version": "0.0.0-development",
"description": "Simple commands to skip a test based on platform, browser or an url",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "cypress run",
"semantic-release": "semantic-release",
"format": "prettier --write '*.js' 'cypress/**/*.js'",
"e2e": "mocha --timeout 30000 test",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"keywords": [
"cypress",
"cypress-plugin"
],
"author": "Gleb Bahmutov <[email protected]> (https://glebbahmutov.com/)",
"license": "MIT",
"private": false,
"devDependencies": {
"cypress": "6.2.1",
"debug": "4.3.1",
"mocha": "8.2.1",
"prettier": "2.2.1",
"semantic-release": "17.3.9",
"spok": "1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress-skip-test.git"
},
"bugs": {
"url": "https://github.com/cypress-io/cypress-skip-test/issues"
},
"homepage": "https://github.com/cypress-io/cypress-skip-test#readme",
"files": [
"index.js",
"index.d.ts",
"support.js"
]
}