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 4
/
package.json
100 lines (100 loc) · 3.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "hapi-greenkeeper-keeper",
"version": "0.0.0-semantically-released",
"main": "lib/plugin.cjs.js",
"module": "lib/plugin.es.js",
"license": "MIT",
"engines": {
"node": ">= 12"
},
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"description": "hapi plugin to automatically merge and clean up passing greenkeeper PRs",
"repository": "greenkeeper-keeper/hapi-greenkeeper-keeper",
"bugs": "https://github.com/greenkeeper-keeper/hapi-greenkeeper-keeper/issues",
"homepage": "https://github.com/greenkeeper-keeper/hapi-greenkeeper-keeper#readme",
"funding": {
"url": "https://github.com/greenkeeper-keeper/hapi-greenkeeper-keeper?sponsor=1"
},
"keywords": [
"greenkeeper.io",
"github",
"hapi",
"plugin"
],
"scripts": {
"lint:js": "eslint . --cache",
"lint:md": "globstar --node -- markdownlint **/*.md",
"lint:gherkin": "gherkin-lint",
"lint:peer": "npm ls >/dev/null",
"lint:engines": "check-engine",
"tests:unit:no-coverage": "mocha 'src/**/*-test.js'",
"coverage": "nyc run-s tests:unit:no-coverage",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:unit": "run-s coverage",
"test:integration": "run-s 'test:integration:base -- --tags \"not @wip\"'",
"test:integration:base": "cucumber-js test/integration --require-module @babel/register --format-options '{\"snippetInterface\": \"async-await\"}'",
"test:integration:debug": "DEBUG=nock,test run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --tags @wip'",
"test:integration:focus": "run-s 'test:integration:base -- --tags @focus'",
"test:integration:focus:debug": "DEBUG=nock,test run-s test:integration:focus",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:* --serial build",
"build": "rollup -c",
"prepack": "run-s build"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/"
],
"devDependencies": {
"@babel/register": "^7.8.3",
"@hapi/hapi": "^19.1.0",
"@travi/any": "^2.0.4",
"@travi/babel-preset": "3.0.22",
"@travi/eslint-config": "1.0.35",
"@travi/eslint-config-cucumber": "1.0.5",
"@travi/eslint-config-mocha": "1.0.8",
"chai": "^4.2.0",
"chai-as-promised": "7.1.1",
"check-engine": "^1.8.1",
"codecov": "^3.5.0",
"commitlint-config-travi": "^1.3.4",
"cucumber": "^6.0.5",
"cz-conventional-changelog": "3.2.0",
"debug": "^4.1.1",
"gherkin-lint": "^4.0.0",
"globstar": "1.0.0",
"good": "8.1.2",
"good-console": "8.0.0",
"good-squeeze": "5.1.0",
"husky": "^4.0.2",
"markdownlint-cli": "^0.23.0",
"mocha": "7.2.0",
"nock": "^12.0.0",
"npm-run-all": "4.1.5",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"rollup": "^2.0.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^9.0.0"
},
"dependencies": {
"@hapi/boom": "^9.0.0",
"@hapi/hoek": "^9.0.3",
"@hapi/joi": "^17.1.0",
"@octokit/rest": "^17.0.0",
"btoa": "1.2.1",
"delay": "^4.3.0",
"http-status-codes": "1.4.0",
"lodash.groupby": "4.6.0",
"lodash.values": "4.3.0"
}
}