-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.72 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
38
39
40
41
42
43
44
45
46
{
"private": true,
"name": "metalsmith-plugins",
"description": "🔩 A collection of many plugins for Metalsmith, the plugin-driven static site generator.",
"keywords": [
"metalsmith",
"metalsmith-plugin"
],
"homepage": "https://github.com/emmercm/metalsmith-plugins#readme",
"bugs": {
"url": "https://github.com/emmercm/metalsmith-plugins/issues"
},
"license": "GPL-3.0-or-later",
"author": "Christian Emmer",
"repository": {
"type": "git",
"url": "git+https://github.com/emmercm/igir.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lock:regen": "rm -rf package-lock.json packages/*/package-lock.json node_modules/ && npm install",
"clean": "lerna clean --yes",
"build": "lerna run build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"test:force": "lerna run test --skip-nx-cache",
"test:coverage": "lerna run test:coverage",
"bump:major": "lerna ls --parseable --since main --no-private --loglevel silent | while read -r package; do npm --prefix \"${package}\" version major --no-git-tag-version; done && npm install",
"bump:minor": "lerna ls --parseable --since main --no-private --loglevel silent | while read -r package; do npm --prefix \"${package}\" version minor --no-git-tag-version; done && npm install",
"bump:patch": "lerna ls --parseable --since main --no-private --loglevel silent | while read -r package; do npm --prefix \"${package}\" version patch --no-git-tag-version; done && npm install",
"pack:all": "lerna exec -- npm pack"
},
"devDependencies": {
"lerna": "^8.1.8",
"ts-migrate": "^0.1.35"
},
"engines": {
"node": ">=15"
},
"volta": {
"node": "20.18.0"
}
}