-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) 路 1.43 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) 路 1.43 KB
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
{
"name": "your_site",
"description": "Drupal 11 implementation of YOURSITE for YOURORG",
"license": "proprietary",
"private": true,
"engines": {
"npm": ">= 10.8.0",
"node": ">= 20.20.0"
},
"scripts": {
"lint-js": "eslint web/modules/custom --max-warnings=0 --no-error-on-unmatched-pattern",
"lint-css": "stylelint --allow-empty-input \"web/modules/custom/**/*.css\"",
"lint": "npm run lint-js && npm run lint-css",
"lint-fix-js": "eslint web/modules/custom --no-error-on-unmatched-pattern --fix",
"lint-fix-css": "stylelint --allow-empty-input \"web/modules/custom/**/*.css\" --fix",
"lint-fix": "npm run lint-fix-js && npm run lint-fix-css",
"test": "jest --coverage --passWithNoTests"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.4",
"@homer0/prettier-plugin-jsdoc": "^12.0.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^63.0.10",
"eslint-plugin-no-jquery": "^5.0.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-yml": "^1.19.1",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"stylelint": "^16.25.0",
"stylelint-config-standard": "^38.0.0",
"stylelint-order": "^7.0.0"
},
"overrides": {
"test-exclude": "^7.0.1",
"glob": "^13.0.6",
"jsdom": "^29.0.0"
}
}