forked from levelgraph/levelgraph-jsonld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "levelgraph-jsonld",
"version": "2.0.0",
"description": "The Object Document Mapper for LevelGraph based on JSON-LD",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive test",
"zuul": "zuul -- test",
"zuul-local": "zuul --local -- test/*.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/mcollina/levelgraph-jsonld.git"
},
"bugs": {
"url": "http://github.com/mcollina/levelgraph-jsonld/issues"
},
"keywords": [
"object",
"document",
"mapper",
"odm",
"graph",
"graph",
"database",
"json",
"json-ld",
"rdf",
"linked data"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.1.4",
"jsonld": "0.4.9",
"n3": "^0.10.0",
"uuid": "^3.0.1"
},
"peerDependencies": {
"levelgraph": "^3.0.0"
},
"devDependencies": {
"browserify": "^14.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.2",
"level-mem": "^6.0.1",
"levelgraph": "^3.0.0",
"lodash": "^4.17.4",
"mocha": "^4.1.0",
"uglify-js": "^3.0.0",
"zuul": "^3.11.1"
}
}