forked from googleapis/release-please
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "release-please",
"version": "14.0.0",
"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 LC_ALL=en c8 mocha --recursive --timeout=5000 build/test",
"docs": "echo add docs tests",
"test:snap": "SNAPSHOT_UPDATE=1 LC_ALL=en 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",
"schemas"
],
"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": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/diff": "^5.0.2",
"@types/iarna__toml": "^2.0.1",
"@types/js-yaml": "^4.0.0",
"@types/jsonpath": "^0.2.0",
"@types/lerna__collect-updates": "^5.0.0",
"@types/lerna__package": "^5.0.0",
"@types/lerna__package-graph": "^5.0.0",
"@types/lerna__run-topologically": "^5.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/pino": "^7.0.0",
"@types/semver": "^7.0.0",
"@types/sinon": "^10.0.0",
"@types/xmldom": "^0.1.31",
"@types/yargs": "^17.0.0",
"ajv": "^8.11.0",
"c8": "^7.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"gts": "^3.1.0",
"mocha": "^9.2.2",
"nock": "^13.0.0",
"sinon": "14.0.0",
"snap-shot-it": "^7.0.0"
},
"dependencies": {
"@conventional-commits/parser": "^0.4.1",
"@google-automations/git-file-utils": "^1.0.0",
"@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": "^5.0.0",
"@octokit/request": "^6.0.0",
"@octokit/request-error": "^3.0.0",
"@octokit/rest": "^19.0.0",
"@types/npm-package-arg": "^6.1.0",
"@xmldom/xmldom": "^0.8.2",
"chalk": "^4.0.0",
"code-suggester": "^4.0.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"conventional-changelog-writer": "^5.0.0",
"conventional-commits-filter": "^2.0.2",
"detect-indent": "^6.1.0",
"diff": "^5.0.0",
"figures": "^3.0.0",
"js-yaml": "^4.0.0",
"jsonpath": "^1.1.1",
"node-html-parser": "^5.0.0",
"parse-github-repo-url": "^1.4.1",
"semver": "^7.0.0",
"type-fest": "^2.0.0",
"typescript": "^4.6.4",
"unist-util-visit": "^2.0.3",
"unist-util-visit-parents": "^3.1.1",
"xpath": "^0.0.32",
"yargs": "^17.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}