-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.93 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
{
"name": "in-solidarity-bot",
"version": "1.8.3",
"description": "A Probot app",
"keywords": [
"probot",
"github",
"probot-app"
],
"homepage": "https://github.com/jpoehnelt/in-solidarity-bot",
"bugs": "https://github.com/jpoehnelt/in-solidarity-bot/issues",
"repository": "https://github.com/jpoehnelt/in-solidarity-bot.git",
"license": "Apache 2.0",
"author": "Justin Poehnelt <justin.poehnelt@gmail.com>",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && cp -avr src/templates/ dist/src/templates/",
"format": "eslint src/*.ts --fix",
"lint": "eslint src/*.ts",
"start": "probot run ./dist/src/index.js",
"test": "jest",
"test:update": "jest --updateSnapshot",
"docs": "rm -rf docs && node ./dist/src/docs/index.js"
},
"jest": {
"testEnvironment": "node"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**/*",
"fixtures/*"
],
"dependencies": {
"@types/minimatch": "^3.0.3",
"ajv": "^8.1.0",
"deepmerge": "^4.2.2",
"gitdiff-parser": "^0.2.2",
"handlebars": "^4.7.6",
"js-yaml": "^4.0.0",
"minimatch": "^3.0.4",
"probot": "^12.1.0",
"regex-parser": "^2.2.11"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/jest": "^27.0.1",
"@types/js-yaml": "^4.0.0",
"@types/nock": "^11.1.0",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^25.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.6",
"nock": "^13.1.3",
"prettier": "^2.3.2",
"smee-client": "^1.2.2",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=12.8.1"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}