-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 KB
/
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
43
{
"name": "octopull",
"version": "1.0.2",
"description": "Your multi repo pull request buddy, octopull your git repos",
"license": "MIT",
"main": "./lib/index.js",
"repository": "alvaropinot/octopull",
"author": "Alvaro Pinot <[email protected]> (http://github.com/alvaropinot)",
"contributors": [
"Karol Altamirano <[email protected]> (http://www.karolaltamirano.com/)"
],
"keywords": [
"repository",
"pull",
"git"
],
"bugs": {
"url": "https://github.com/alvaropinot/octopull/issues"
},
"scripts": {
"clean": "rimraf lib",
"dev": "npm run clean && babel src -w -s -d lib",
"build": "npm run clean && babel src -d lib",
"lint": "standard 'src/**/*.js' 'examples/**/*.js'",
"prepare": "npm run build"
},
"dependencies": {
"dotenv": "^4.0.0",
"gh-got": "^5.0.0",
"tmp": "^0.0.31"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.12.11",
"rimraf": "^2.5.4",
"standard": "^8.6.0"
},
"engines": {
"node": ">=12",
"npm": ">=6.4"
}
}