-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 743 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 743 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
{
"name": "copy-github-labels-cli",
"version": "1.0.0",
"description": "CLI tool to copy github labels",
"keywords": [
"cli",
"cli-app",
"copy",
"github",
"labels"
],
"author": {
"name": "Jurgen Van de Moere",
"email": "jurgen.van.de.moere@gmail.com",
"url": "http://www.jvandemo.com"
},
"repository": {
"type": "git",
"url": "http://github.com/jvandemo/copy-github-labels-cli.git"
},
"preferGlobal": true,
"bin": {
"copy-github-labels": "cli.js"
},
"scripts": {
"test": "eslint cli.js"
},
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"copy-github-labels": "^1.3.1",
"meow": "^3.4.1"
},
"devDependencies": {
"eslint": "^1.6.0"
}
}