forked from RubenVerborgh/SPARQL.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.01 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
{
"name": "sparqljs",
"version": "3.0.1",
"description": "A parser for the SPARQL query language",
"author": "Ruben Verborgh <ruben.verborgh@gmail.com>",
"dependencies": {
"n3": "^1.0.4"
},
"keywords": [
"sparql",
"rdf",
"query",
"parser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RubenVerborgh/SPARQL.js.git"
},
"bugs": {
"url": "https://github.com/RubenVerborgh/SPARQL.js/issues"
},
"main": "sparql.js",
"bin": "bin/sparql-to-json",
"files": [
"sparql.js",
"lib/*.js",
"bin/*"
],
"scripts": {
"build": "./node_modules/.bin/jison lib/sparql.jison -p slr -o lib/SparqlParser.js",
"test": "./node_modules/.bin/mocha"
},
"engines": {
"node": ">=8.0"
},
"devDependencies": {
"expect": "^24.8.0",
"jison": "0.4.18",
"mocha": "4.1.x",
"pre-commit": "~1.2.2"
},
"browser": {
"_process": false,
"fs": false,
"path": false
},
"pre-commit": [
"build",
"test"
]
}