-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "@kunoichi/grab-deps",
"version": "2.0.0",
"description": "Grab dependencies from js/css files.",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "wp-scripts lint-js '{index.js,bin/grab-deps.mjs}'",
"format": "wp-scripts format '{index.js,bin/grab-deps.mjs}'",
"imagemin": "npx grab-deps-image 'test/src/images/**/*.{jpg,png,gif,svg}' test/dist/images",
"js": "npx grab-deps js 'test/assets/js' test/dist/js",
"dump": "npx grab-deps dump 'test/src'"
},
"bin": {
"grab-deps-image": "./bin/grab-images.mjs",
"grab-deps": "./bin/grab-deps.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuno1/grab-deps.git"
},
"keywords": [
"wordpress"
],
"author": "Kunoichi Market",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuno1/grab-deps/issues"
},
"homepage": "https://github.com/kuno1/grab-deps#readme",
"devDependencies": {
"@wordpress/scripts": "^27.9.0",
"glob": "^11.0.1",
"imagemin": "^9.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^11.0.1",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "18.20.6"
},
"peerDependencies": {
"@wordpress/scripts": ">=27.9.0",
"imagemin": "^9.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^11.0.1"
}
}