-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
36 lines (36 loc) · 880 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
{
"name": "first-timers-bot",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "probot run ./app.js",
"lint": "prettier --check '{lib,test}/**/*.js' *.js *.md package.json",
"lint:fix": "prettier --write '{lib,test}/**/*.js' *.js *.md package.json",
"pretest": "npm run -s lint",
"test": "tap --100 'test/{integration,unit}/*-test.js'",
"coverage": "tap --coverage-report=html"
},
"dependencies": {
"probot": "^13.3.8"
},
"devDependencies": {
"@octokit/rest": "^20.1.1",
"@vercel/node": "^3.2.18",
"fetch-mock": "^10.0.7",
"prettier": "^3.3.3",
"simple-mock": "^0.8.0",
"tap": "^16.3.8"
},
"repository": "github:first-timers/app",
"license": "Apache-2.0",
"files": [
"lib",
"server.js",
"instructions.md"
],
"keywords": [
"node",
"server"
]
}