-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
64 lines (64 loc) · 1.55 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
{
"name": "@bigbite/wp-cypress",
"version": "0.13.3",
"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": {
"test": "jest",
"lint:scripts": "eslint \"lib/**/*.js\" \"bin/**/*.js\" \"plugin/**/*.js\"",
"prepare": "husky install"
},
"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-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-extended": "^1.2.0",
"mock-fs": "5.1.2"
},
"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",
"prettier": "^2.5.1",
"pretty-error": "^4.0.0",
"semver": "^7.3.7",
"shelljs": "^0.8.5"
}
}