-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
39 lines (39 loc) · 880 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
{
"name": "copy-github-labels",
"version": "2.0.0",
"description": "Easily copy labels from one GitHub repository to another",
"main": "index.js",
"dependencies": {
"@octokit/rest": "^15.3.0",
"extend": "^3.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"inquirer": "^5.2.0",
"mocha": "^5.1.1"
},
"scripts": {
"test": "mocha test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jvandemo/copy-github-labels.git"
},
"keywords": [
"git",
"github",
"labels",
"issues",
"copy"
],
"author": {
"name": "Jurgen Van de Moere",
"email": "[email protected]",
"url": "http://www.jvandemo.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jvandemo/copy-github-labels/issues"
},
"homepage": "https://github.com/jvandemo/copy-github-labels"
}