This repository has been archived by the owner on Jul 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.65 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@jarrodldavis/probot-gpg",
"version": "0.5.0",
"description": "A GitHub App built with Probot that enforces GPG signatures on pull requests",
"keywords": [
"git",
"pull request",
"pull requests",
"github",
"github workflow",
"github integration",
"github app",
"github api",
"probot",
"probot plugin",
"probot app",
"gpg",
"gpg signature",
"gpg key",
"signing commits",
"git signing"
],
"author": "Jarrod Davis <developer@jarrodldavis.com>",
"license": "MIT",
"homepage": "https://github.com/jarrodldavis/probot-gpg",
"bugs": {
"url": "https://github.com/jarrodldavis/probot-gpg/issues"
},
"repository": "https://github.com/jarrodldavis/probot-gpg.git",
"main": "index",
"directories": {
"lib": "./lib",
"test": "./test",
"doc": "./docs"
},
"scripts": {
"start": "probot run ./index.js",
"test": "standard --verbose | snazzy && nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"nock-record": "./scripts/nock-record",
"lt": "lt --port 3000"
},
"dependencies": {
"bunyan": "^1.8.12",
"probot": "~3.0.0"
},
"devDependencies": {
"assertive": "^2.3.4",
"coveralls": "^3.0.0",
"dotenv": "^4.0.0",
"jsonwebtoken": "^8.0.1",
"localtunnel": "^1.8.2",
"lodash.times": "^4.3.2",
"mocha": "^4.0.0",
"nock": "^9.0.13",
"node-forge": "^0.7.1",
"nyc": "^11.0.2",
"proxyquire": "^1.8.0",
"sinon": "^4.0.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"strip-ansi": "^4.0.0",
"uuid": "^3.1.0"
},
"engines": {
"node": "^8.9.0",
"npm": "^5.5.1"
}
}