-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 905 Bytes
/
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
{
"name": "prevent-xss-vulnerability",
"description": "Development files for the Prevent XSS Vulnerability plugin.",
"version": "2.0.2",
"repository": {
"type": "git",
"url": "https://github.com/samiahmedsiddiqui/prevent-xss-vulnerability.git"
},
"bugs": {
"url": "https://github.com/samiahmedsiddiqui/prevent-xss-vulnerability/issues"
},
"author": "Sami Ahmed Siddiqui",
"scripts": {
"format:fix": "npm run lint:format:fix && npm run format:js:fix",
"format:css:fix": "npx stylelint **/*.css --fix",
"format:js:fix": "eslint . --fix",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "npx stylelint **/*.css",
"lint:js": "eslint ."
},
"devDependencies": {
"@wordpress/eslint-plugin": "20.2.0",
"@wordpress/stylelint-config": "22.5.0",
"eslint": "8.57.0",
"gulp": "5.0.0",
"gulp-clean-css": "4.3.0",
"gulp-rename": "2.0.0",
"gulp-uglify": "3.0.2"
}
}