-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"name": "halsp",
"private": true,
"license": "MIT",
"author": "Hal Wang",
"homepage": "https://halsp.org",
"repository": {
"type": "git",
"url": "https://github.com/halsp/core"
},
"bugs": {
"url": "https://github.com/halsp/core/issues",
"email": "support@hal.wang"
},
"scripts": {
"prebuild": "sh scripts/copy-package-files.sh",
"build": "lerna run build",
"init-docker": "sh scripts/init-docker.sh",
"pretest": "npm run build && npm run init-docker",
"test": "jest",
"test-q": "npm run prebuild && jest",
"update": "lerna version --force-publish -m \"chore(release): publish %s\"",
"publish:alpha": "lerna publish --dist-tag=alpha -m \"chore(release): publish %s\"",
"publish:from-package": "lerna publish from-package -m \"chore(release): publish %s\"",
"publish:from-package:alpha": "lerna publish from-package --dist-tag=alpha -m \"chore(release): publish %s\"",
"lint": "lerna run lint",
"prepare": "husky install",
"postinstall": "sh scripts/init-cli-deps.sh"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@halsp/cli": "*",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lerna": "8.1.2",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"workspaces": [
"packages/*"
]
}