-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "turtle-validator",
"version": "1.1.1",
"description": "This command line tool validates Turtle documents and does XSD datatype checks",
"main": "lib/validator.js",
"bin": {
"ttl": "./TurtleValidator.js"
},
"dependencies": {
"n3": "^1.4.0"
},
"devDependencies": {
"browserify": "^16.5.1",
"local-web-server": "^2.6.1"
},
"engines": {
"node": ">=4.0"
},
"scripts": {
"build": "browserify lib/validator.js -o public/js/ttl.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm install && npm build && ws"
},
"repository": {
"type": "git",
"url": "git://github.com/mmlab/TurtleValidator.git"
},
"keywords": [
"Turtle",
"RDF",
"Semantic",
"Web"
],
"author": "Miel Vander Sande",
"contributors": [
{
"name": "Pieter Colpaert",
"email": "pieter.colpaert@ugent.be",
"url": "https://pietercolpaert.be"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mmlab/TurtleValidator/issues"
},
"homepage": "https://github.com/mmlab/TurtleValidator"
}