This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.77 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
{
"name": "@heroku-cli/plugin-pipelines",
"description": "pipelines heroku plugin",
"version": "2.5.10",
"author": "Heroku Developer Experience team",
"bugs": {
"url": "https://github.com/heroku/heroku-pipelines/issues"
},
"cli-engine": {
"bin": "heroku",
"topics": {
"pipelines": {
"description": "groups of apps that share the same codebase"
},
"reviewapps": {
"description": "disposable apps built on GitHub pull requests"
}
}
},
"dependencies": {
"@heroku-cli/command": "^8.1.17",
"bluebird": "^3.5.1",
"co": "^4.6.0",
"heroku-cli-util": "^8.0.9",
"http-call": "^5.1.2",
"inflection": "^1.12.0",
"inquirer": "^5.2.0",
"lodash.flatten": "^4.4.0",
"lodash.sortby": "^4.7.0",
"string-just": "^0.0.2",
"validator": "^10.2.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.13.21",
"@oclif/plugin-legacy": "^1.0.15",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nock": "^9.2.6",
"nyc": "^11.7.3",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"standard": "^8.6.0",
"std-mocks": "^1.0.1",
"supervisor": "^0.12.0"
},
"files": [
"oclif.manifest.json",
"/index.js",
"/commands",
"/lib"
],
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"main": "index.js",
"repository": "heroku/heroku-pipelines",
"scripts": {
"autotest": "./node_modules/.bin/supervisor -q -n exit -x ./node_modules/.bin/mocha -- -b",
"test": "nyc mocha && standard",
"version": "oclif-dev readme && git add README.md",
"prepublishOnly": "oclif-dev manifest",
"postpublish": "rm oclif.manifest.json"
},
"standard": {
"globals": [
"describe",
"context",
"beforeEach",
"afterEach",
"it"
]
}
}