-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 874 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 874 Bytes
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
{
"name": "sttl",
"version": "0.0.1",
"description": "A JavaScript Implementation of the SPARQL Template Transformation Language (STTL)",
"author": "Victor Charpenay <victor.charpenay@siemens.com>",
"keywords": [
"sparql",
"rdf",
"sttl"
],
"license": "MIT",
"main": "./src/sttl.js",
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vcharpenay/STTL.js.git"
},
"scripts": {
"build": "jison src/sttl.jison -p slr -o src/parser.js",
"build-browser": "browserify src/sttl.js -s sttl -o bin/sttl-browser.js",
"test": "mocha",
"render": "node src/cli.js"
},
"devDependencies": {
"jison": "0.4.18",
"mocha": "3.0.x",
"browserify": "16.x.x"
},
"dependencies": {
"sparqljs": "2.0.x",
"node-fetch": "2.1.2",
"urdf": "vcharpenay/uRDF.js"
}
}