forked from linkeddata/rdflib.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "rdflib",
"description": "an RDF library for node.js. Suitable for client and server side.",
"version": "0.4.0",
"private": false,
"author": {
"name": "J. Presbrey",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/linkeddata/rdflib.js.git"
},
"homepage": "http://github.com/linkeddata/rdflib.js",
"bugs": "http://github.com/linkeddata/rdflib.js/issues",
"dependencies": {
"async": "^0.9.x",
"jsonld": "^0.4.5",
"n3": "^0.4.1",
"xmldom": "^0.1.22",
"xmlhttprequest": "^1.7.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"nodeunit": "^0.9.1"
},
"scripts": {
"test": "make test",
"prepublish": "make clean all"
},
"files": [
"dist",
"dist/rdflib.js"
],
"main": "dist/rdflib-node.js",
"keywords": [
"linkeddata",
"linked data",
"rdf",
"rdfa",
"turtle",
"semantic",
"web",
"read-write web"
],
"standard": {
"globals": [
"ActiveXObject",
"Components",
"DOMParser",
"netscape",
"$rdf",
"Services",
"tabulator",
"WebSocket"
]
}
}