-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "unjar-from-url",
"version": "1.1.1",
"description": "Downloads JAR files from urls and unzipps them right away from your package.json Edit",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"engines": {
"node": ">=4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emreavsar/unjar-from-url.git"
},
"keywords": [
"unjar",
"download",
"file",
"dependency",
"http"
],
"author": "Emre Avsar <[email protected]> (www.avsar.ch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/emreavsar/unjar-from-url/issues"
},
"homepage": "https://github.com/emreavsar/unjar-from-url#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.1"
},
"dependencies": {
"decompress-zip": "^0.3.0",
"download": "^6.1.0",
"download-file-sync": "^1.0.4",
"package-json": "^4.0.1",
"path": "^0.12.7",
"rmdir": "^1.2.0"
},
"bin": {
"unjar-from-url": "index.js"
}
}