-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "levelgraph-n3",
"version": "2.1.0",
"description": "LevelGraph plugin that add the ability to load and store n3/turtle files.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec test",
"zuul": "zuul test/common.js test/*spec.js",
"zuul-local": "zuul --open --local 8080 -- test/common.js test/*spec.js",
"coverage": "rm -rf coverage; istanbul cover _mocha -- --recursive --reporter spec --bail",
"publish-coverage": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/levelgraph/levelgraph-n3.git"
},
"bugs": {
"url": "http://github.com/levelgraph/levelgraph-n3/issues"
},
"keywords": [
"levelgraph",
"graph",
"rdf",
"turtle",
"linked",
"data",
"linked data",
"n3"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"dependencies": {
"cli": "^1.0.1",
"concat-stream": "^1.6.0",
"end-of-stream": "^1.4.0",
"glob": "^7.1.2",
"level": "^1.7.0",
"mkdirp": "^0.5.0",
"n3": "^0.10.0",
"progress-stream": "^2.0.0",
"readable-stream": "^2.2.10"
},
"peerDependencies": {
"levelgraph": "^2.0.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.4",
"levelgraph": "^2.0.0",
"memdb": "^1.3.1",
"mocha": "^3.4.2",
"uglify-js": "^3.0.15",
"zuul": "^3.11.1"
}
}