-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 1.62 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
65
{
"name": "grunt-patch-wordpress",
"version": "4.0.0",
"description": "Patch your core WordPress.",
"author": "The WordPress Contributors",
"license": "MIT",
"keywords": [
"gruntplugin"
],
"homepage": "https://github.com/wordpress/grunt-patch-wordpress",
"repository": {
"type": "git",
"url": "git://github.com/wordpress/grunt-patch-wordpress.git"
},
"bugs": {
"url": "https://github.com/wordpress/grunt-patch-wordpress/issues"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"main": "Gruntfile.js",
"jest": {
"testMatch": [
"**/test/**/*.js"
],
"testPathIgnorePatterns": [
".eslintrc.js"
]
},
"npmPackageJsonLintConfig": {
"extends": "@wordpress/npm-package-json-lint-config",
"rules": {
"valid-values-license": [
"error",
[
"MIT"
]
]
}
},
"dependencies": {
"grunt": "^1.0.3",
"inquirer": "^5.1.0",
"request": "^2.83.0",
"xmlrpc": "^1.3.2"
},
"devDependencies": {
"@wordpress/scripts": "^26.19.0",
"concurrently": "^8.2.2"
},
"scripts": {
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses --prod",
"test:coverage": "wp-scripts test-unit-js --coverage",
"test:help": "wp-scripts test-unit-js --help",
"test:unit": "wp-scripts test-unit-js",
"test:watch": "wp-scripts test-unit-js --watch",
"test": "concurrently \"npm run check-engines\" \"npm run check-licenses\" \"npm run lint\" \"npm run test:unit\"",
"lint": "concurrently \"npm run lint:js\" \"npm run lint:pkg-json\"",
"lint:js": "wp-scripts lint-js",
"lint:fix": "wp-scripts lint-js --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json"
}
}