-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 1.9 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
{
"name": "@ossjs/release",
"version": "0.8.1",
"description": "Minimalistic, opinionated, and predictable release automation tool.",
"main": "./bin/build/index.js",
"author": "Artem Zakharchenko <[email protected]>",
"license": "MIT",
"bin": {
"release": "./bin/cli.sh"
},
"files": [
"bin"
],
"scripts": {
"start": "pnpm build -- -w",
"build": "tsc -p tsconfig.build.json",
"test": "jest --runInBand",
"prerelease": "pnpm build && pnpm test",
"release": "./bin/cli.sh publish"
},
"devDependencies": {
"@swc/core": "^1.3.81",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.4",
"dotenv": "^16.3.1",
"fs-teardown": "^0.3.2",
"jest": "^29.6.4",
"msw": "^1.2.5",
"node-git-server": "^1.0.0-beta.30",
"portfinder": "^1.0.28",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@open-draft/deferred-promise": "^2.1.0",
"@open-draft/until": "^2.1.0",
"@types/conventional-commits-parser": "^3.0.2",
"@types/issue-parser": "^3.0.1",
"@types/node": "^16.11.27",
"@types/node-fetch": "2.x",
"@types/rc": "^1.2.1",
"@types/registry-auth-token": "^4.2.1",
"@types/semver": "^7.5.1",
"@types/yargs": "^17.0.10",
"conventional-commits-parser": "^5.0.0",
"get-stream": "^6.0.1",
"git-log-parser": "^1.2.0",
"issue-parser": "^6.0.0",
"node-fetch": "2.6.7",
"outvariant": "^1.4.0",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"rc": "^1.2.8",
"registry-auth-token": "^4.2.1",
"semver": "^7.5.4",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ossjs/release.git"
},
"homepage": "https://github.com/ossjs/release#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"release",
"automation",
"changelog",
"pubilsh",
"semver",
"version",
"package"
]
}