ajv/package.json

33 lines
759 B
JSON
Raw Normal View History

2015-05-20 03:55:53 +03:00
{
"name": "jv",
2015-05-30 01:22:11 +03:00
"version": "0.0.3",
2015-05-20 03:55:53 +03:00
"description": "JSON schema validator",
2015-05-26 04:11:36 +03:00
"main": "lib/jv.js",
2015-05-20 03:55:53 +03:00
"scripts": {
2015-05-30 01:22:11 +03:00
"test": "./node_modules/.bin/mocha --reporter=spec spec/*.spec.js"
2015-05-20 03:55:53 +03:00
},
"repository": {
"type": "git",
"url": "https://github.com/epoberezkin/jv.git"
},
"keywords": [
"JSON",
"schema",
"validator"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/jv/issues"
},
"homepage": "https://github.com/epoberezkin/jv",
"dependencies": {
"dot": "^1.0.3",
"json-stable-stringify": "^1.0.0"
2015-05-26 04:11:36 +03:00
},
"devDependencies": {
"JSON-Schema-Test-Suite": "git+ssh://git@github.com/json-schema/JSON-Schema-Test-Suite.git",
"mocha": "^2.2.5"
2015-05-20 03:55:53 +03:00
}
}