forked from boomzillawtf/tdwtf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 700 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"devDependencies": {
"autolesshint": "^0.2.2",
"eslint": "^7.23.0",
"lesshint": "^6.3.7",
"npm-run-all": "^4.1.5"
},
"scripts": {
"eslint": "eslint --report-unused-disable-directives --cache plugins/nodebb-plugin-tdwtf-customizations",
"lesshint": "lesshint -c .lesshintrc.json --max-warnings 0 plugins/nodebb-plugin-tdwtf-customizations",
"space": "! git grep -In -e '\\n\\n\\n' -e '\\s$' -e '{\\n\\n' -e '\\n\\n\\s*}' -- ':^*.diff'",
"test": "npm-run-all eslint lesshint",
"fixjs": "eslint --fix plugins/nodebb-plugin-tdwtf-customizations",
"fixless": "autolesshint -c .lesshintrc.json plugins/nodebb-plugin-tdwtf-customizations",
"fix": "npm-run-all fixjs fixless"
}
}