forked from buddy-works/buddy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1012 Bytes
/
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
{
"name": "buddyworks-cli",
"version": "1.0.9",
"description": "Command line tool for managing pipelines in Buddy Works",
"keywords": [
"buddy",
"buddy works",
"buddy.works",
"pipeline",
"cli",
"ci/cd"
],
"bin": {
"buddy-cli": "bin/buddy-cli.js"
},
"preferGlobal": true,
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint ."
},
"author": "Buddy Authors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/buddy-works/buddy-cli"
},
"bugs": {
"url": "https://github.com/buddy-works/buddy-cli/issues"
},
"homepage": "https://buddy.works",
"engines": {
"node": ">= 6"
},
"dependencies": {
"chalk": "2.4.1",
"cliui": "4.1.0",
"request": "2.85.0",
"yargs": "11.0.0"
},
"devDependencies": {
"sinon": "5.0.4",
"chai": "4.1.2",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.11.0",
"mocha": "5.1.1"
}
}