-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.2 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
{
"title": "GitHub Release Writer",
"webpackConfigJaid": "cli",
"version": "2.3.4",
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"dependencies": {
"@absolunet/fsp": "^1.7.0",
"@octokit/app": "^12.0.5",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^3.6.2",
"@octokit/rest": "^18.12.0",
"body-parser": "^1.20.0",
"camel-case": "^4.1.2",
"compare-dependencies": "^2.0.0",
"data-urls": "^3.0.2",
"ensure-array": "^1.0.0",
"fast-koa-router": "^1.3.2",
"flatted": "^3.2.5",
"globby": "^13.1.2",
"got": "^12.1.0",
"handlebars": "^4.7.7",
"handlebars-helper-plural": "^2.0.0",
"handlebars-helpers": "^0.10.0",
"has-content": "^1.1.1",
"humanize-list": "^1.0.1",
"jaid-core": "^8.1.0",
"json5": "^2.2.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"lodash-es": "^4.17.21",
"oauth-1.0a": "^2.2.6",
"pify": "^6.0.0",
"prevent-start": "^1.0.5",
"probot": "^12.2.4",
"query-string": "^7.1.1",
"semver": "^7.3.7",
"shortid": "^2.2.16",
"sure-array": "^1.0.0",
"twit": "^2.2.11",
"yargs": "^17.5.1",
"zahl": "^2.0.6"
},
"devDependencies": {
"acorn": "^8.7.1",
"babel-jest": "^28.1.1",
"babel-preset-jaid": "^14.0.0",
"browserslist-config-jaid-node": "^3.0.0",
"delay": "^5.0.0",
"eslint": "^8.17.0",
"eslint-config-jaid": "^1.59.1",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"webpack": "^5.73.0",
"webpack-config-jaid": "^16.1.1"
},
"scripts": {
"clean": "rimraf dist/",
"start": "npm run build:dev && node --inspect=9229 $(npx find-by-extension-cli js --fullPath --cwd dist/package/development)",
"babel:prod": "rimraf dist/transpiled/production && NODE_ENV=production babel --out-dir dist/transpiled/production --source-maps true src",
"babel:dev": "rimraf dist/transpiled/development && NODE_ENV=development babel --out-dir dist/transpiled/development src",
"babel:test": "rimraf dist/transpiled/test && NODE_ENV=test babel --out-dir dist/transpiled/test src",
"build:prod": "NODE_ENV=production webpack",
"build:dev": "NODE_ENV=development webpack",
"test": "npm run build:prod && NODE_ENV=production MAIN=$(npx find-by-extension-cli js --fullPath --cwd dist/package/production) jest --runInBand --passWithNoTests",
"test:coverage": "npm run test:dev -- --coverage --json --outputFile=dist/jest/stats.json",
"test:dev": "npm run build:dev && NODE_ENV=test MAIN=$(npx find-by-extension-cli js --fullPath --cwd dist/package/development) jest --runInBand",
"test:debug": "npm run start",
"prepareActionJest": "npm run build:prod"
},
"name": "github-release-writer",
"description": "Generates and inserts changelogs into GitHub releases for Node packages.",
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/github-release-writer"
},
"homepage": "https://github.com/apps/nodejs-changelog-writer",
"keywords": [
"automation",
"backend",
"bot",
"changelog",
"changelogs",
"cli",
"github",
"github-api",
"github-bot",
"probot",
"release",
"server"
],
"type": "module"
}