-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.69 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "package-bundle",
"version": "0.5.0",
"description": "Download npm packages and dependencies as tgz's to then import into package manager or project",
"main": "lib/index.js",
"preferGlobal": true,
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"colors": "^1.3.0",
"commander": "^2.15.1",
"mkdirp": "^0.5.1",
"progress": "^2.0.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"tar": "^4.4.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node src",
"prebuild": "rimraf lib/*",
"build": "babel -d lib/ src/",
"prepublish": "yarn lint && yarn build",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/alexbrazier/package-bundle.git"
},
"bugs": {
"url": "https://github.com/alexbrazier/package-bundle/issues"
},
"engines": {
"node": ">= 4"
},
"bin": {
"package-bundle": "./bin/package-bundle.js",
"pb": "./bin/package-bundle.js"
},
"files": [
"bin",
"lib",
"src"
],
"keywords": [
"package",
"bundle",
"tar.gz",
"archive",
"dependencies",
"npm",
"packages",
"yarn",
"artifactory"
],
"author": "alexbrazier",
"license": "MIT"
}