-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 944 Bytes
/
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
{
"name": "local-cypress",
"version": "0.0.0-development",
"description": "Use Cypress without global objects",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"files": [
"index.*",
"postinstall.js"
],
"scripts": {
"test": "cypress run",
"cy:open": "cypress open",
"build": "tsc",
"watch": "tsc -w",
"postinstall": "node ./postinstall",
"semantic-release": "semantic-release",
"lint": "tsc --project cypress/tsconfig.json"
},
"keywords": [
"cypress",
"cypress-utility"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "14.14.22",
"cypress": "9.7.0",
"prettier": "2.2.1",
"semantic-release": "19.0.5",
"typescript": "4.1.3"
},
"dependencies": {
"debug": "4.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/local-cypress.git"
}
}