-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
40 lines (40 loc) · 988 Bytes
/
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
{
"name": "project-bot",
"version": "2.0.5",
"description": "Add new Issues and PullRequests to a GitHub Project Board",
"main": "src/index.js",
"scripts": {
"start": "probot run ./src/index.js",
"lint": "standard --fix",
"test": "jest",
"posttest": "standard",
"test:fix": "jest --updateSnapshot && standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philschatz/project-bot.git"
},
"author": "Philip Schatz",
"bugs": {
"url": "https://github.com/philschatz/project-bot/issues"
},
"homepage": "https://github.com/philschatz/project-bot#readme",
"now": {
"alias": "project-bot",
"dotenv": ".env"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"commonmark": "^0.29.0",
"probot": "^9.2.20"
},
"devDependencies": {
"jest": "^24.8.0",
"nock": "^10.0.6",
"smee-client": "^1.1.0",
"standard": "^13.1.0"
}
}