-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "breaking-change",
"version": "2.0.0",
"description": "Automatically update an issue and/or discussion with breaking changes.",
"author": "Tyler Miller",
"license": "MIT",
"main": "index.js",
"type": "module",
"engines": {
"node": "^16.13.0",
"npm": "~9.2.0"
},
"scripts": {
"build-docs": "node scripts/build-docs.js",
"build": "ncc build src/index.js -sm --no-source-map-register --license NOTICE.txt",
"postbuild": "bash scripts/postbuild.sh",
"test": "bash scripts/test.sh",
"format": "prettier -w .",
"preversion": "git pull && npm ci",
"version": "npm run build && npm run build-docs && git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmillr/breaking-change.git"
},
"bugs": {
"url": "https://github.com/tmillr/breaking-change/issues"
},
"homepage": "https://github.com/tmillr/breaking-change#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"js-yaml": "4.1.0"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
"ava": "5.3.1",
"c8": "7.14.0",
"execa": "7.1.1",
"prettier": "2.8.8",
"semver": "7.5.1"
},
"volta": {
"node": "16.19.0",
"npm": "9.2.0"
}
}