-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.03 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": "hdt",
"version": "3.1.1",
"description": "Native bindings to access HDT compressed triple files.",
"author": "Ruben Verborgh <[email protected]>",
"keywords": [
"turtle",
"rdf",
"hdt",
"triples",
"linkeddata",
"semanticweb"
],
"license": "LGPL-3.0",
"main": "./lib/hdt",
"bin": "./bin/hdt",
"types": "./lib/hdt.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/RubenVerborgh/HDT-Node.git"
},
"bugs": {
"url": "https://github.com/RubenVerborgh/HDT-Node/issues"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"test": "rm test/*.hdt.index.* 2> /dev/null; mocha",
"lint": "eslint --fix lib/*.js test/*.js bin/*",
"validate": "npm ls"
},
"dependencies": {
"minimist": "^1.1.0",
"n3": "^1.17.3",
"nan": "^2.19.0",
"rdf-string": "^1.6.3"
},
"devDependencies": {
"eslint": "^5.3.0",
"mocha": "^6.2.2",
"precommit-hook": "^3.0.0",
"should": "^13.1.0"
},
"pre-commit": [
"lint",
"test"
]
}