turtle-web-editor/package.json

41 lines
962 B
JSON

{
"name": "turtle-validator",
"version": "1.1.0",
"description": "This command line tool validates Turtle documents and does XSD datatype checks",
"main": "lib/validator.js",
"bin": {
"ttl": "./TurtleValidator.js"
},
"dependencies": {
"n3": "1.0.0-beta.1"
},
"devDependencies": {
"browserify": "^16.2.3",
"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",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmlab/TurtleValidator/issues"
},
"homepage": "https://github.com/mmlab/TurtleValidator"
}