forked from googleapis/release-please
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "release-please",
"version": "11.20.2",
"description": "generate release PRs based on the conventionalcommits.org spec",
"main": "./build/src/index.js",
"bin": "./build/src/bin/release-please.js",
"scripts": {
"test": "cross-env ENVIRONMENT=test c8 mocha --recursive --timeout=5000 build/test",
"docs-test": "echo add docs tests",
"test:snap": "SNAPSHOT_UPDATE=1 npm test",
"clean": "gts clean",
"prepare": "npm run compile",
"lint": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"pretest": "npm run compile"
},
"files": [
"build/src",
"templates",
"!build/src/**/*.map"
],
"repository": "googleapis/release-please",
"keywords": [
"release",
"conventional-commits"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/googleapis/release-please/issues"
},
"homepage": "https://github.com/googleapis/release-please#readme",
"config": {
"snap-shot-it": {
"sortSnapshots": true
}
},
"devDependencies": {
"@octokit/types": "^6.1.0",
"@types/chai": "^4.1.7",
"@types/iarna__toml": "^2.0.1",
"@types/js-yaml": "^4.0.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.0",
"@types/pino": "^6.3.0",
"@types/semver": "^7.0.0",
"@types/sinon": "^10.0.0",
"@types/yargs": "^16.0.0",
"c8": "^7.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"gts": "^2.0.0",
"mocha": "^8.0.0",
"nock": "^13.0.0",
"sinon": "11.1.2",
"snap-shot-it": "^7.0.0"
},
"dependencies": {
"@conventional-commits/parser": "^0.4.1",
"@iarna/toml": "^2.2.5",
"@lerna/collect-updates": "^4.0.0",
"@lerna/package": "^4.0.0",
"@lerna/package-graph": "^4.0.0",
"@lerna/run-topologically": "^4.0.0",
"@octokit/graphql": "^4.3.1",
"@octokit/request": "^5.6.0",
"@octokit/request-error": "^2.1.0",
"@octokit/rest": "^18.6.6",
"@types/npm-package-arg": "^6.1.0",
"chalk": "^4.0.0",
"code-suggester": "^2.0.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"conventional-changelog-writer": "^5.0.0",
"conventional-commits-filter": "^2.0.2",
"figures": "^3.0.0",
"js-yaml": "^4.0.0",
"parse-github-repo-url": "^1.4.1",
"semver": "^7.0.0",
"type-fest": "^1.0.0",
"typescript": "^3.8.3",
"unist-util-visit": "^2.0.3",
"unist-util-visit-parents": "^3.1.1",
"yargs": "^16.0.0"
},
"engines": {
"node": ">=10.12.0"
}
}