-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
65 lines (65 loc) · 2.16 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
60
61
62
63
64
65
{
"name": "sparqljs",
"version": "3.7.3",
"description": "A parser for the SPARQL query language",
"author": "Ruben Verborgh <[email protected]>",
"keywords": [
"sparql",
"rdf",
"query",
"parser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RubenVerborgh/SPARQL.js.git"
},
"bugs": {
"url": "https://github.com/RubenVerborgh/SPARQL.js/issues"
},
"main": "sparql.js",
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"files": [
"sparql.js",
"lib/*.js",
"bin/*"
],
"scripts": {
"build": "jison lib/sparql.jison -p slr -m js -o lib/SparqlParser.js && echo 'module.exports=SparqlParser' >> lib/SparqlParser.js",
"test": "mocha",
"prepublishOnly": "npm run build",
"spec:base": "rdf-test-suite spec/parser.js http://w3c.github.io/rdf-tests/sparql/sparql11/manifest-all.ttl -c .rdf-test-suite-cache/",
"spec:query": "npm run spec:base -- -s http://www.w3.org/TR/sparql11-query/",
"spec:update": "npm run spec:base -- -s http://www.w3.org/TR/sparql11-update/",
"spec:star": "rdf-test-suite spec/parser.js https://w3c.github.io/rdf-star/tests/sparql/syntax/manifest.jsonld -i '{ \"sparqlStar\": true }' -c .rdf-test-suite-cache/",
"spec:earl:query": "npm run spec:query --silent -- -o earl -p spec/earl-meta.json > spec/earl-query.ttl",
"spec:earl:update": "npm run spec:update --silent -- -o earl -p spec/earl-meta.json > spec/earl-update.ttl",
"spec:earl:star": "npm run spec:star --silent -- -o earl -p spec/earl-meta.json > spec/earl-star.ttl",
"spec:all": "npm run spec:base && npm run spec:query && npm run spec:update && npm run spec:star",
"spec:earl": "npm run spec:earl:query && npm run spec:earl:update && npm run spec:earl:star"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"dependencies": {
"rdf-data-factory": "^1.1.2"
},
"devDependencies": {
"expect": "^24.9.0",
"jison": "0.4.18",
"mocha": "^10.1.0",
"pre-commit": "^1.2.2",
"rdf-test-suite": "^1.25.0"
},
"browser": {
"_process": false,
"fs": false,
"path": false
},
"pre-commit": [
"build",
"test"
]
}