-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 904 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
{
"name": "gh-issue-mover",
"version": "1.0.3",
"description": "A friendly CLI tool to migrate issues across GitHub and GitHub Enteprise repos",
"main": "lib/index.js",
"files": [
"lib"
],
"bin": {
"gh-issue-mover": "lib/index.js"
},
"scripts": {
"start": "babel-node src/index.js",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"postpublish": "rm -rf lib"
},
"author": "buildo",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.11.6",
"colors": "^1.1.2",
"inquirer": "^1.1.3",
"lodash": "^4.15.0",
"octokat": "^0.4.18",
"open": "0.0.5",
"tcomb-validation": "^3.2.1",
"yargs": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.14.0"
}
}