-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "@rapidjs.org/releasing",
"version": "0.3.1",
"description": "Java- and TypeScript package release helper utility.",
"author": "Thassilo Martin Schiepanski",
"homepage": "https://github.com/rapidjs-org/releasing#readme",
"keywords": [
"releasing",
"release",
"npm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rapidjs-org/releasing.git"
},
"bugs": {
"url": "https://github.com/rapidjs-org/releasing/issues"
},
"license": "Apache-2.0",
"main": "./lib/api.js",
"bin": {
"rjs-releasing": "./lib/cli.js"
},
"files": [
"./lib/"
],
"scripts": {
"prepare": "husky",
"test:api": "node unit.test.js",
"test": "npm run test:api",
"test-cli:repo": "./rjs-releasing.sh ./test/repo --github --dry-run --stacktrace",
"test-cli:monorepo": "./rjs-releasing.sh ./test/monorepo --github --dry-run --stacktrace",
"reset-test-versions": "node ./scripts/reset-test-versions.js",
"release": "./rjs-releasing.sh --github"
},
"devDependencies": {
"husky": "^9.1.6"
}
}