This repository has been archived by the owner on Apr 5, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.45 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
{
"name": "@greenkeeper-keeper/probot",
"description": "Probot app to enable using greenkeeper-keeper as a GitHub App",
"license": "MIT",
"version": "0.0.1",
"main": "./src/index.js",
"repository": "greenkeeper-keeper/probot-app",
"bugs": "https://github.com/greenkeeper-keeper/probot-app/issues",
"homepage": "https://github.com/greenkeeper-keeper/probot-app#readme",
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"scripts": {
"start": "probot run ./src/index.js",
"clean": "rimraf ./lib",
"lint:js": "eslint . --cache",
"lint:md": "remark --quiet --frail .",
"lint:gherkin": "gherkin-lint",
"lint:travis": "travis-lint .travis.yml",
"lint:sensitive": "ban",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:unit:base": "mocha --recursive test/unit",
"test:unit": "nyc run-s test:unit:base",
"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=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'",
"prebuild": "run-s clean",
"build": "webpack --env production",
"prepare": "npm run build",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-external-helpers": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"@travi/any": "1.8.2",
"@travi/eslint-config-travi": "1.8.7",
"babel-loader": "8.0.4",
"ban-sensitive-files": "1.9.2",
"chai": "4.2.0",
"codecov": "3.6.5",
"commitlint-config-travi": "1.3.6",
"cucumber": "5.0.2",
"cz-conventional-changelog": "2.1.0",
"gherkin-lint": "3.4.0",
"husky": "1.1.3",
"mocha": "5.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.0.0",
"remark-cli": "6.0.0",
"remark-preset-lint-travi": "1.1.0",
"rimraf": "2.6.2",
"sinon": "7.1.1",
"terser-webpack-plugin": "1.1.0",
"travis-lint": "1.0.0",
"webpack": "4.41.6",
"webpack-cli": "3.1.2"
},
"dependencies": {
"probot": "7.3.1"
}
}