-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "file-upload-types",
"description": "Manage the types of files that can be uploaded to your WordPress site.",
"version": "1.5.0",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/awesomemotive/file-upload-types.git"
},
"license": "GPL-2.0+",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.php": [
"php -d display_errors=1 -l",
"composer run-script phpcs-pre-commit"
]
},
"scripts": {
"gulp": "cross-env-shell gulp --gulpfile $INIT_CWD/gulpfile.js"
},
"type": "module",
"devDependencies": {
"cross-env": "^7.0.3",
"gulp": "^4.0.2",
"gulp-cached": "^1.1.1",
"gulp-composer": "^0.4.5",
"gulp-debug": "^5.0.1",
"gulp-imagemin": "^9.1.0",
"gulp-include": "^2.4.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"gulp-zip": "^6.0.0",
"husky": "^9.0.11",
"lint-staged": "^11.2.6",
"node-sass": "^9.0.0",
"sass": "^1.77.6"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=9.8.1"
}
}