forked from WildRikku/OctoPrint-SpoolManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 683 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "octoprint-spoolmanager-lint",
"version": "0.0.0",
"private": true,
"description": "Linting tooling for the OctoPrint-SpoolManager frontend assets (not a published package).",
"scripts": {
"lint": "npm run lint:js && npm run lint:css && npm run lint:format",
"lint:js": "eslint octoprint_SpoolManager/static/js",
"lint:css": "stylelint \"octoprint_SpoolManager/static/**/*.{css,less}\"",
"lint:format": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"eslint": "^10.8.0",
"postcss-less": "^6.0.0",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0"
}
}