forked from tectalic/CopyCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 924 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
{
"name": "copycraft",
"version": "0.1.0",
"author": "OM4 Software",
"scripts": {
"test:e2e": "jest e2e",
"wp-env:destroy": "wp-env destroy",
"wp-env:initialise-dev": "wp-env run cli /var/www/html/wp-content/uploads/wp-env/initialise.sh",
"wp-env:initialise-test": "wp-env run tests-cli /var/www/html/wp-content/uploads/wp-env/initialise.sh",
"wp-env:initialise": "npm run wp-env:initialise-dev && npm run wp-env:initialise-test",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:update": "wp-env start --update"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
},
"devDependencies": {
"@wordpress/e2e-test-utils": "^9.1.0",
"@wordpress/env": "^5.9.0",
"jest": "29.3.1",
"jest-puppeteer": "^6.2.0",
"prettier": "^2.8.2",
"puppeteer": "^17.1.3"
}
}