-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 900 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 900 Bytes
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
{
"name": "@cryptoscamdb/github",
"version": "1.0.0",
"description": "A Github bot for performing lookups on URLs in CSDB pull requests",
"homepage": "https://github.com/CryptoScamDB/github",
"license": "MIT",
"author": "Luit",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start:dev": "cross-env NODE_ENV=development DEBUG=* node app.js --trace-sync-io",
"start:prod": "cross-env NODE_ENV=production DEBUG=-* node app.js",
"clean": "rimraf node_modules config.json private-key.pem"
},
"repository": {
"type": "git",
"url": "git://github.com/CryptoScamDB/github.git"
},
"dependencies": {
"bottleneck": "^2.8.0",
"cross-env": "^5.2.0",
"debug": "^3.1.0",
"github-app": "^4.0.1",
"github-webhook-handler": "^0.7.1",
"js-yaml": "^3.12.0",
"request": "^2.88.0"
},
"devDependencies": {
"rimraf": "^2.6.2"
}
}