-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "permalink-bot",
"version": "1.0.0",
"description": "Updates Github URL's to a permalink",
"author": "Kapil Lamba <kapillamba4@gmail.com>",
"license": "ISC",
"repository": "https://github.com/kapillamba4/permalink-bot.git",
"homepage": "https://github.com/kapillamba4/permalink-bot",
"bugs": "https://github.com/kapillamba4/permalink-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY_BASE64 | base64 -d) npm start",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"jsdom": "^11.11.0",
"probot": "^7.0.0"
},
"devDependencies": {
"jest": "^22.4.3",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
}
}