-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "releaser",
"version": "0.4.6",
"description": "Release scripts for all of Escale's workflows",
"bin": {
"releaser": "bin/release.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"lint": "standard",
"typecheck": "tsc --allowJs --checkJs --noEmit ./bin/release.js",
"release": "npx github:escaletech/releaser --update-package-json --gpg-sign"
},
"repository": {
"type": "git",
"url": "git+https://github.com/escaletech/releaser.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/escaletech/releaser/issues"
},
"homepage": "https://github.com/escaletech/releaser#readme",
"devDependencies": {
"@types/jest": "^26.0.4",
"jest": "^26.1.0",
"standard": "^16.0.4",
"typescript": "^3.9.6"
},
"dependencies": {
"chalk": "^4.1.0",
"concat-stream": "^2.0.0",
"conventional-changelog-angular": "^5.0.11",
"conventional-recommended-bump": "^6.0.9",
"dot-json": "^1.2.0",
"git-raw-commits": "^2.0.7",
"git-semver-tags": "^4.0.0",
"prompts": "^2.3.2",
"semver": "^7.3.2",
"semver-sort": "^1.0.0",
"yargs": "^15.4.0"
},
"standard": {
"env": [
"jest"
]
}
}