-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.56 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
{
"name": "close-label",
"version": "0.0.4",
"private": true,
"description": "A Probot app that applies a specific label to an issue closed through a pull request considering its current labels.",
"author": {
"email": "[email protected]",
"name": "Bruno Logerfo",
"url": "https://github.com/Logerfo"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Logerfo/close-label.git"
},
"homepage": "https://github.com/close-label",
"bugs": "https://github.com/close-label/issues",
"keywords": [
"probot",
"github",
"probot-app",
"label"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"nock": "12.0.3",
"@types/nock": "10.0.3",
"probot": "9.15.1",
"typescript": "3.9.10"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "11.15.54",
"eslint-plugin-typescript": "0.14.0",
"jest": "27.0.6",
"nodemon": "2.0.12",
"smee-client": "1.2.2",
"standard": "14.3.4",
"ts-jest": "26.5.6",
"tslint": "6.1.3",
"typescript-eslint-parser": "22.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
}
}