-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "ldfetch",
"version": "1.2.8",
"description": "Linked Data Fetch HTTP RDF library for NodeJS and browser",
"bin": "bin/ldfetch.js",
"main": "lib/ldfetch.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/browserify/bin/cmd.js lib/ldfetch-browser.js > dist/main.js"
},
"keywords": [
"http",
"rdf",
"linked",
"data",
"hypermedia"
],
"author": "Pieter Colpaert <pieter.colpaert@ugent.be>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/pietercolpaert/ldfetch.git"
},
"bugs": {
"url": "https://github.com/pietercolpaert/ldfetch/issues"
},
"dependencies": {
"@hapi/wreck": "^17.x.x",
"commander": "^8.x.x",
"follow-redirects": "^1.x.x",
"https-browserify": "^1.0.0",
"jsonld": "^5.x.x",
"node-cache": "^4.2.1",
"q": "^1.5.1",
"rdf-parse": "^2.x.x",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string-to-stream": "^3.0.1",
"url": "^0.11.0",
"util": "^0.12.4"
},
"browser": {
"./lib/NodeHttpFetcher.js": "./lib/BrowserHttpFetcher.js",
"./lib/NodeHTMLParser.js": "./lib/BrowserHTMLParser.js"
},
"devDependencies": {
"browserify": "^17.0.0"
}
}