-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "changelog-bot",
"version": "1.0.0",
"private": true,
"description": "A GitHub app that monitors changelogs and automatically marks issues with their release version",
"author": "OctoBear <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/smartbear/changelog-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc && npm run copyfiles",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"start": "probot run ./lib/index.js",
"copyfiles": "cp ./src/CHANGELOG.md ./lib/CHANGELOG.md",
"test": "mocha"
},
"dependencies": {
"@octokit/plugin-rest-endpoint-methods": "5.12.0",
"@octokit/types": "6.32.0",
"@types/node": "14.17.21",
"@types/remove-markdown": "0.3.1",
"changelog-parser": "2.8.0",
"probot": "12.1.1",
"remove-markdown": "0.3.0"
},
"devDependencies": {
"@types/mocha": "9.0.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"hamjest": "3.7.2",
"mocha": "9.1.2",
"nock": "13.1.3",
"prettier": "2.4.1",
"smee-client": "1.2.2",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"engines": {
"node": ">= 10.13.0"
}
}