-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"private": true,
"directories": {
"test": "tests"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"test": "npm run test:unit",
"test:e2e": "wp-scripts test-e2e",
"test:e2e:debug": "wp-scripts --inspect-brk test-e2e --puppeteer-devtools",
"test:e2e:help": "wp-scripts test-e2e --help",
"test:e2e:watch": "npm run test-e2e -- --watch",
"test:unit": "wp-scripts test-unit-js",
"test:unit:help": "wp-scripts test-unit-js --help",
"test:unit:watch": "wp-scripts test-unit-js --watch",
"test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Parsely/wp-parsely.git"
},
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/Parsely/wp-parsely/issues"
},
"homepage": "https://github.com/Parsely/wp-parsely#readme",
"browserslist": [
"defaults"
],
"devDependencies": {
"@wordpress/e2e-test-utils": "^5.4.1",
"@wordpress/eslint-plugin": "^9.1.2",
"@wordpress/scripts": "^18.0.1",
"prettier": "^2.4.1"
},
"dependencies": {
"@wordpress/dom-ready": "^2.13.2",
"@wordpress/i18n": "^3.20.0",
"js-cookie": "^3.0.0"
}
}