forked from RubenVerborgh/SPARQL.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
58
59
{
"name": "sparqljs",
"version": "3.4.0",
"description": "A parser for the SPARQL query language",
"author": "Ruben Verborgh <[email protected]>",
"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": "jison lib/sparql.jison -p slr -o lib/SparqlParser.js",
"test": "mocha",
"prepublishOnly": "npm run build",
"spec-base-query": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/sparql11/data-sparql11/manifest-all.ttl -s http://www.w3.org/TR/sparql11-query/ -c .rdf-test-suite-cache/",
"spec-base-update": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/sparql11/data-sparql11/manifest-all.ttl -s http://www.w3.org/TR/sparql11-update/ -c .rdf-test-suite-cache/",
"spec-earl-query": "npm run spec-base-query --silent -- -o earl -p spec/earl-meta.json > spec/earl-query.ttl",
"spec-earl-update": "npm run spec-base-update --silent -- -o earl -p spec/earl-meta.json > spec/earl-update.ttl",
"spec": "npm run spec-base-query && npm run spec-base-update"
},
"engines": {
"node": ">=8.0"
},
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"devDependencies": {
"expect": "^24.8.0",
"jison": "0.4.18",
"mocha": "^7.0.0",
"pre-commit": "^1.2.2",
"rdf-test-suite": "^1.11.0"
},
"browser": {
"_process": false,
"fs": false,
"path": false
},
"pre-commit": [
"build",
"test"
]
}