-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.52 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
{
"name": "hugo-modules",
"description": "@davidsneighbour's reusable gohugo components.",
"version": "1.2024.23",
"license": "MIT",
"private": true,
"repository": "davidsneighbour/hugo-modules",
"author": "Patrick Kollitsch <[email protected]> (https://davids-neighbour.com)",
"bugs": "https://github.com/davidsneighbour/hugo-modules/issues",
"homepage": "https://github.com/davidsneighbour/hugo-modules#readme",
"devDependencies": {
"@davidsneighbour/markdownlint-config": "2024.4.12",
"@davidsneighbour/remark-config": "2024.4.12",
"@davidsneighbour/tools": "2024.4.12",
"@playwright/test": "1.49.0",
"@types/node": "22.10.1",
"dotenv": "16.4.7"
},
"scripts": {
"build": "node bin/release/system/update.mjs && ./bin/components",
"clean": "rimraf node_modules package-lock.json",
"clean:all": "npm run clean --workspaces && npm run clean",
"lint:lockfiles": "lockfile-lint --path package-lock.json --type=npm --validate-https --allowed-hosts=npm --empty-hostname=false --validate-package-names --validate-checksum --validate-integrity",
"tests": "playwright test",
"tests:generate": "playwright codegen",
"update": "npm-check-updates --deep --upgrade --target=minor && npm install",
"update:major": "npm-check-updates --deep --upgrade && npm install",
"updates": "npm exec --workspaces -- npm-check-updates --upgrade"
},
"stylelint": {
"extends": "@davidsneighbour/stylelint-config"
},
"type": "module",
"workspaces": [
"modules/*"
]
}