-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.76 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "run-shared-scripts",
"version": "1.1.5",
"description": "Define and run shared scripts of a monorepo using Yarn workspaces, Bolt, Lerna or pnpm",
"main": "lib/index.js",
"type": "module",
"bin": {
"rss": "./bin/rss.js"
},
"files": [
"lib",
"bin"
],
"keywords": [
"monorepo",
"scripts",
"npm-scripts",
"shared-scripts",
"workspaces",
"yarn-monorepo",
"yarn-workspaces",
"yarn",
"lerna-monorepo",
"lerna-workspaces",
"lerna",
"pnpm-workspaces",
"pnpm-monorepo",
"pnpm",
"Bolt"
],
"scripts": {
"ci": "cd ./example && pnpm install --no-frozen-lockfile --ignore-scripts && pnpm run build && pnpm run test"
},
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/bubkoo/run-shared-scripts",
"bugs": {
"url": "https://github.com/bubkoo/run-shared-scripts/issues"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/bubkoo/run-shared-scripts.git"
},
"release": {
"extends": "@bubkoo/semantic-release-config"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"chalk": "^5.1.2",
"cross-spawn": "^7.0.3",
"fastest-levenshtein": "^1.0.16",
"find-monorepo-root": "^1.0.2",
"fs-extra": "^10.1.0",
"meow": "^11.0.0",
"pidtree": "^0.6.0",
"shell-quote": "^1.7.4"
},
"devDependencies": {
"@bubkoo/semantic-release-config": "^1.4.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/node": "^18.11.9",
"semantic-release": "^19.0.5"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}