forked from tinybeachthor/gitbot-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "gitbot-format",
"version": "0.8.1",
"description": "Github PR formatting app",
"private": true,
"author": "Martin Toman <[email protected]>",
"license": "ISC",
"repository": "https://github.com/WhoMeNope/gitbot-format",
"homepage": "https://github.com/WhoMeNope/gitbot-format",
"bugs": "https://github.com/WhoMeNope/gitbot-format/issues",
"scripts": {
"build": "tsc",
"start": "node out/index.js",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"main": "out/index.js",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"js-yaml": "^3.13.1",
"temp-write": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/js-yaml": "^3.12.2",
"@types/node": "^13.7.7",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-plugin-github": "^3.4.1",
"eslint-plugin-jest": "^23.8.1",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}