-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "poteto",
"version": "0.9.3",
"description": "HTTP-alike fetch for FILE protocol, e.g. fetch('file:///usr/bin/node')",
"type": "module",
"exports": {
".": "./index.mjs",
"./factory": "./alt/factory.mjs",
"./internal": "./alt/internal.mjs",
"./polyfill": "./alt/polyfill.mjs",
"./ponyfill": "./alt/ponyfill.mjs"
},
"bin": {
"poteto-cat": "./bin/poteto-cat.mjs",
"poteto-dog": "./bin/poteto-dog.mjs",
"poteto-ls": "./bin/poteto-ls.mjs",
"poteto-put": "./bin/poteto-put.mjs",
"poteto-rm": "./bin/poteto-rm.mjs"
},
"private": true,
"scripts": {
"test": "node --test",
"lint": "eslint . --ext .mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LiviaMedeiros/poteto.git"
},
"keywords": [
"nodejs",
"fetch",
"URL",
"http",
"fs",
"file",
"polyfill",
"ponyfill"
],
"author": {
"name": "LiviaMedeiros",
"email": "[email protected]",
"url": "https://github.com/LiviaMedeiros"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/LiviaMedeiros/poteto/issues"
},
"homepage": "https://github.com/LiviaMedeiros/poteto#readme",
"devDependencies": {
"eslint": "*"
}
}