This repository has been archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.96 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
{
"name": "github-bot",
"description": "service to automate some repetitive tasks using our bot account(s)",
"license": "MIT",
"author": "dsmJS",
"maintainers": [
"Matt Travi <[email protected]> (https://matt.travi.org/)"
],
"repository": "dsmjs/github-bot",
"bugs": "https://github.com/dsmjs/github-bot/issues",
"homepage": "https://github.com/dsmjs/github-bot#readme",
"scripts": {
"lint:md": "globstar --node -- markdownlint **/*.md",
"lint:engines": "check-engine",
"tests:integration": "run-s tests:integration:base -- --tags 'not @wip'",
"tests:integration:base": "cucumber-js test/integration --require-module babel-register --format-options '{\"snippetInterface\": \"async-await\"}'",
"tests:integration:debug": "DEBUG=test run-s tests:integration",
"tests:integration:wip": "run-s tests:integration:base -- --tags @wip",
"test": "run-s lint:* tests:*",
"commitmsg": "validate-commit-msg",
"precommit": "npm test",
"build": "babel src --out-dir lib",
"start": "node lib/index.js",
"postinstall": "run-s build"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "10.x.x"
},
"devDependencies": {
"@travi/any": "2.0.8",
"babel-cli": "6.26.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"check-engine": "1.8.1",
"cucumber": "6.0.5",
"cz-conventional-changelog": "3.2.0",
"globstar": "1.0.0",
"http-status-codes": "1.4.0",
"husky": "4.2.5",
"markdownlint-cli": "0.23.0",
"mocha": "7.1.2",
"npm-run-all": "4.1.5",
"nyc": "15.0.1",
"validate-commit-msg": "2.14.0"
},
"dependencies": {
"dotenv-safe": "8.2.0",
"glue": "5.0.0",
"good": "8.1.1",
"good-console": "8.0.0",
"good-squeeze": "5.1.0",
"hapi-github-webhooks": "2.0.2",
"hapi-greenkeeper-keeper": "3.0.4"
}
}