forked from first-timers/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 924 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
41
{
"name": "first-timers-bot",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) DEBUG=probot* npm start",
"start": "probot run ./server.js",
"pretest": "standard",
"test": "tap --coverage 'test/{integration,unit}/*-test.js'",
"coverage": "tap --coverage-report=text-lcov | coveralls"
},
"dependencies": {
"debug": "^4.0.1",
"probot": "^9.0.0"
},
"devDependencies": {
"@octokit/rest": "^16.0.1",
"coveralls": "^3.0.0",
"nock": "^10.0.0",
"simple-mock": "^0.8.0",
"standard": "^13.0.1",
"tap": "^14.0.0"
},
"engines": {
"node": "8.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/first-timers-only-bot"
},
"license": "Apache-2.0",
"files": [
"lib",
"server.js",
"instructions.md"
],
"keywords": [
"node",
"server"
]
}