-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 989 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
{
"name": "bkrun",
"version": "1.1.4",
"description": "Run buildkite pipelines locally",
"main": "lib/index.js",
"bin": {
"bkrun": "./lib/bkrun.js",
"bkrun-agent": "./lib/agent.js"
},
"scripts": {
"test": "standard | snazzy",
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SomeoneWeird/bkrun.git"
},
"keywords": [
"buildkite"
],
"author": "Adam Brady <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/SomeoneWeird/bkrun/issues"
},
"homepage": "https://github.com/SomeoneWeird/bkrun#readme",
"dependencies": {
"colors": "^1.1.2",
"inquirer": "^1.1.2",
"io-spin": "^0.3.0",
"merge": "^1.2.0",
"parse-spawn-args": "^1.0.2",
"uuid": "^2.0.2",
"yamljs": "^0.2.8"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"pre-commit": "^1.1.3"
}
}