-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "wp-force-logout",
"description": "Forcefully logout WordPress user(s).",
"version": "1.5.0",
"homepage": "https://miniplugins.com/",
"repository": {
"type": "git",
"url": "https://github.com/sanzeeb3/wp-force-logout.git"
},
"license": "GPL-2.0+",
"main": "Gruntfile.js",
"lint-staged": {
"*.php": [
"php -d display_errors=1 -l",
"composer run-script phpcs-pre-commit"
],
"*.scss": [
"stylelint --syntax=scss --fix",
"git add"
],
"!(*.min).js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt-checktextdomain": "1.0.1",
"grunt-contrib-compress": "1.5.0",
"grunt-contrib-cssmin": "3.0.0",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-sass": "~3.1.0",
"grunt-wp-i18n": "1.0.3",
"husky": "^3.1.0",
"node-sass": "^4.13.1",
"eslint": "^6.8.0",
"lint-staged": "^9.5.0"
},
"engines": {
"node": ">=8.9.3",
"npm": ">=5.5.1"
},
"dependencies": {
"lint-staged": "^9.4.2"
}
}