This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.85 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
{
"name": "reference-instance",
"license": "MIT",
"private": true,
"author": "Matt Travi",
"description": "an instance of a greenkeeper-keeper service that should serve as a good reference implementation",
"repository": "greenkeeper-keeper/reference-instance",
"bugs": "https://github.com/greenkeeper-keeper/reference-instance/issues",
"homepage": "https://github.com/greenkeeper-keeper/reference-instance#readme",
"scripts": {
"lint:md": "globstar --node -- markdownlint **/*.md",
"lint:engines": "check-engine",
"lint:peer": "npm ls >/dev/null",
"tests:integration": "cucumber-js test/integration --require-module @babel/register --tags 'not @wip'",
"tests:integration:debug": "DEBUG=test run-s tests:integration",
"tests:integration:wip": "cucumber-js test/integration --require-module babel-register --tags @wip",
"test": "run-s lint:* tests:*",
"build": "babel src --out-dir lib",
"start": "node lib/index.js",
"postinstall": "run-s build"
},
"engines": {
"node": "12.x.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/register": "7.10.1",
"@travi/any": "2.0.9",
"@travi/babel-preset": "3.0.22",
"chai": "^4.2.0",
"check-engine": "1.8.1",
"cucumber": "6.0.5",
"cz-conventional-changelog": "3.2.0",
"globstar": "1.0.0",
"http-status-codes": "1.3.2",
"husky": "^4.0.2",
"markdownlint-cli": "^0.23.0",
"npm-run-all": "^4.1.3",
"validate-commit-msg": "2.14.0"
},
"dependencies": {
"@hapi/glue": "7.0.0",
"@travi/hapi-github-webhooks": "3.0.1",
"dotenv-safe": "8.2.0",
"good": "8.1.2",
"good-console": "8.0.0",
"good-squeeze": "^5.1.0",
"hapi-graceful-shutdown-plugin": "2.0.8",
"hapi-greenkeeper-keeper": "3.0.4"
}
}