-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 912 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 912 Bytes
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
{
"name": "pipelinedog",
"version": "0.2.2",
"description": "Command line interface for PipelineDog",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhouanbo/pipelinedog-cli.git"
},
"keywords": [
"Pipeline",
"PipelineDog"
],
"babel": {
"presets": [
"es2015"
]
},
"author": "Anbo Zhou",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhouanbo/pipelinedog-cli/issues"
},
"preferGlobal": true,
"bin": {
"pipelinedog": "dist/index.js"
},
"homepage": "https://github.com/zhouanbo/pipelinedog-cli#readme",
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"flat": "^2.0.1",
"js-yaml": "^3.6.1",
"lodash": "^4.12.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.14.0"
}
}