UNPKG

1.34 kBJSONView Raw
1{
2 "name": "get-uri",
3 "version": "4.0.0",
4 "description": "Returns a `stream.Readable` from a URI string",
5 "main": "./dist/index.js",
6 "types": "./dist/index.d.ts",
7 "files": [
8 "dist"
9 ],
10 "scripts": {
11 "prebuild": "rimraf dist",
12 "build": "tsc",
13 "test": "mocha --reporter spec",
14 "prepublishOnly": "npm run build"
15 },
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/TooTallNate/node-get-uri.git"
19 },
20 "keywords": [
21 "uri",
22 "read",
23 "readstream",
24 "stream",
25 "get",
26 "http",
27 "https",
28 "ftp",
29 "file",
30 "data",
31 "protocol",
32 "url"
33 ],
34 "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
35 "license": "MIT",
36 "bugs": {
37 "url": "https://github.com/TooTallNate/node-get-uri/issues"
38 },
39 "devDependencies": {
40 "@types/debug": "4",
41 "@types/fs-extra": "^8.0.1",
42 "@types/ftp": "^0.3.30",
43 "@types/node": "^12.12.11",
44 "ftpd": "https://files-jg1s1zt9l.n8.io/ftpd-v0.2.14.tgz",
45 "mocha": "^6.2.2",
46 "rimraf": "^3.0.0",
47 "st": "^1.2.2",
48 "stream-to-array": "2",
49 "typescript": "^4.4.3"
50 },
51 "dependencies": {
52 "@tootallnate/once": "2",
53 "data-uri-to-buffer": "3",
54 "debug": "4",
55 "file-uri-to-path": "2",
56 "fs-extra": "^8.1.0",
57 "ftp": "^0.3.10"
58 },
59 "engines": {
60 "node": ">= 8"
61 }
62}