-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.26 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@10up/cypress-wp-utils",
"version": "0.6.0",
"description": "Cypress command utilities for testing WordPress",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"docs": "typedoc --out docs src/**/*.ts",
"clean": "rm -rf ./lib/",
"coverage": "codecov",
"lint": "eslint ./src/ --fix",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"prettify": "prettier --write \"**/*.{ts,js}\"",
"typecheck": "tsc --noEmit",
"cypress:open": "cypress open --config-file tests/cypress/cypress-config.js --e2e --browser chrome",
"cypress:run": "cypress run --config-file tests/cypress/cypress-config.js",
"env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"env:destroy": "wp-env destroy",
"postenv:start": "./tests/bin/initialize.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10up/cypress-wp-utils.git"
},
"license": "MIT",
"author": "10up <opensource@10up.com> (https://github.com/10up)",
"engines": {
"node": ">=12.0"
},
"keywords": [
"wordpress",
"cypress",
"testing",
"e2e"
],
"bugs": {
"url": "https://github.com/10up/cypress-wp-utils/issues"
},
"homepage": "https://github.com/10up/cypress-wp-utils#readme",
"devDependencies": {
"@types/node": "^12.20.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@wordpress/env": "^10.2.0",
"codecov": "^3.8.1",
"compare-versions": "^4.1.3",
"cypress": "^13.6.4",
"cypress-mochawesome-reporter": "^3.6.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^6.0.0",
"lint-staged": "^16.2.7",
"mochawesome-json-to-md": "^0.7.2",
"prettier": "^2.2.1",
"ts-node": "^10.2.1",
"typedoc": "^0.22.12",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix",
"*.{ts,js}": "prettier --write"
},
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "tests"
}
}