forked from bigbite/wp-cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "@bigbite/wp-cypress",
"version": "0.9.5",
"description": "WordPress end to end testing with Cypress.io",
"repository": "https://github.com/bigbite/wp-cypress",
"author": {
"name": "Big Bite",
"url": "https://bigbite.net",
"twitter": "@BigBite"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bin": {
"wp-cypress": "./bin/script.js"
},
"engines": {
"node": ">=12.22.0"
},
"scripts": {
"lint:scripts": "eslint \"lib/**/*.js\" \"bin/**/*.js\" \"plugin/**/*.js\""
},
"husky": {
"hooks": {
"pre-push": "yarn run lint:scripts"
}
},
"peerDepencies": {
"cypress": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.19.1",
"husky": "^4.2.5"
},
"dependencies": {
"ajv": "^6.12.6",
"ajv-errors": "^1.0.1",
"chokidar": "^3.5.2",
"commander": "^5.0.0",
"core-js": "^3.6.5",
"ejs": "^3.1.5",
"escodegen": "^1.14.1",
"esprima": "^4.0.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"junk": "^3.1.0",
"lodash": "^4.17.20",
"node-fetch": "^2.6.7",
"ora": "^4.0.3",
"pretty-error": "^4.0.0",
"shelljs": "^0.8.5"
}
}