-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "probot-smart-welcome",
"version": "0.0.0",
"description": "Welcomes people to a repo and congratulates them on contributions",
"author": "Brian Torres-Gil <brian@ixi.us> (https://github.com/btorresgil)",
"license": "ISC",
"homepage": "https://github.com/btorresgil/probot-smart-welcome",
"repository": {
"type": "git",
"url": "https://github.com/btorresgil/probot-smart-welcome.git"
},
"bugs": {
"url": "https://github.com/btorresgil/probot-smart-welcome/issues"
},
"keywords": [
"probot",
"github",
"probot-app",
"welcome",
"bot"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "prettier --write .",
"lint:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^10.1.3",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/nock": "^11.1.0",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^26.4.2",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"smee-client": "^1.2.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}