-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 KB
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
{
"name": "hdt",
"version": "3.3.0",
"description": "Native bindings to access HDT compressed triple files.",
"author": "Ruben Verborgh <ruben.verborgh@gmail.com>",
"keywords": [
"turtle",
"rdf",
"hdt",
"triples",
"linkeddata",
"semanticweb"
],
"license": "LGPL-3.0",
"main": "./lib/hdt",
"bin": "./bin/hdt",
"types": "./lib/hdt.d.ts",
"files": [
"bin",
"binding.gyp",
"deps",
"lib"
],
"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",
"preinstall": "if [ -e replace-in-file.json ]; then replace-in-file --configFile=replace-in-file.json; fi && node-gyp rebuild"
},
"dependencies": {
"minimist": "^1.1.0",
"n3": "^2.0.1",
"nan": "^2.24.0",
"rdf-string": "^2.0.1"
},
"devDependencies": {
"eslint": "^5.3.0",
"mocha": "^6.2.2",
"precommit-hook": "^3.0.0",
"replace-in-file": "^8.3.0",
"should": "^13.1.0",
"@comunica/utils-bindings-factory": "^5.0.0"
},
"pre-commit": [
"lint",
"test"
]
}