ajv/package.json

63 lines
1.8 KiB
JSON
Raw Normal View History

2015-05-20 03:55:53 +03:00
{
2015-05-30 01:32:47 +03:00
"name": "ajv",
"version": "2.1.1",
2015-06-20 20:40:13 +03:00
"description": "Another JSON Schema Validator",
2015-05-30 01:54:01 +03:00
"main": "lib/ajv.js",
"files": [
"lib/",
"LICENSE"
],
2015-05-20 03:55:53 +03:00
"scripts": {
2015-08-27 22:55:44 +03:00
"jshint": "jshint lib/**/*.js --exclude lib/dotjs/**/*",
"test-spec": "mocha spec/*.spec.js -R spec",
2015-10-20 00:51:05 +03:00
"test-fast": "AJV_FAST_TEST=true npm run test-spec",
"test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
"test-cov": "istanbul cover -x '**/spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec",
"bundle": "browserify -r ./lib/ajv.js:ajv -o ajv.bundle.js",
"build": "node scripts/compile-dots.js",
"test-browser": "scripts/prepare-tests && karma start --single-run --browsers PhantomJS",
2015-08-27 22:55:44 +03:00
"test": "npm run jshint && npm run build && npm run test-cov && npm run test-browser",
"prepublish": "npm run build",
"watch": "watch 'npm run build' ./lib/dot"
2015-05-20 03:55:53 +03:00
},
"repository": {
"type": "git",
2015-05-30 01:54:01 +03:00
"url": "https://github.com/epoberezkin/ajv.git"
2015-05-20 03:55:53 +03:00
},
"keywords": [
"JSON",
"schema",
"validator"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
2015-05-30 01:54:01 +03:00
"url": "https://github.com/epoberezkin/ajv/issues"
2015-05-20 03:55:53 +03:00
},
2015-05-30 01:54:01 +03:00
"homepage": "https://github.com/epoberezkin/ajv",
2015-05-20 03:55:53 +03:00
"dependencies": {
"json-stable-stringify": "^1.0.0"
2015-05-26 04:11:36 +03:00
},
"devDependencies": {
"brfs": "^0.0.8",
"browserify": "^11.0.1",
"chai": "^3.0.0",
"dot": "^1.0.3",
2015-05-31 15:26:54 +03:00
"glob": "^5.0.10",
2015-08-10 19:47:45 +03:00
"istanbul": "^0.3.17",
"js-beautify": "^1.5.6",
2015-08-27 22:55:44 +03:00
"jshint": "^2.8.0",
"json-schema-test": "^0.1.5",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sauce-launcher": "^0.2.14",
"mocha": "^2.2.5",
"phantomjs": "^1.9.18",
"pre-commit": "^1.1.1",
"require-globify": "^1.3.0",
"watch": "^0.16.0"
2015-05-20 03:55:53 +03:00
}
}