ajv/package.json

101 lines
3.1 KiB
JSON
Raw Normal View History

2015-05-20 03:55:53 +03:00
{
2015-05-30 01:32:47 +03:00
"name": "ajv",
2017-11-06 12:37:08 +03:00
"version": "6.0.0-beta.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",
2016-04-15 22:20:35 +03:00
"typings": "lib/ajv.d.ts",
"files": [
"lib/",
2015-12-29 14:33:37 +03:00
"dist/",
"scripts/",
2015-12-05 01:21:49 +03:00
"LICENSE",
".tonic_example.js"
],
2015-05-20 03:55:53 +03:00
"scripts": {
2017-03-11 23:36:09 +03:00
"eslint": "if-node-version \">=4\" eslint lib/*.js lib/compile/*.js spec scripts",
2017-05-24 22:57:55 +03:00
"jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*",
"test-spec": "mocha spec/*.spec.js -R spec $(if-node-version 7 echo --harmony-async-await)",
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",
2016-10-04 23:16:18 +03:00
"test-cov": "nyc npm run test-spec",
"test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts",
"bundle": "node ./scripts/bundle.js . Ajv pure_getters",
"bundle-nodent": "node ./scripts/bundle.js nodent",
"bundle-all": "del-cli dist && npm run bundle && npm run bundle-nodent",
"bundle-beautify": "node ./scripts/bundle.js js-beautify",
"build": "del-cli lib/dotjs/*.js '!lib/dotjs/index.js' && node scripts/compile-dots.js",
"test-karma": "karma start --single-run --browsers PhantomJS",
"test-browser": "del-cli .browser && npm run bundle-all && scripts/prepare-tests && npm run test-karma",
2017-05-24 22:57:55 +03:00
"test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && if-node-version 4 npm run test-browser",
"prepublish": "npm run build && npm run bundle-all",
"watch": "watch 'npm run build' ./lib/dot"
2015-05-20 03:55:53 +03:00
},
2016-10-04 23:16:18 +03:00
"nyc": {
"exclude": [
"**/spec/**",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
},
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",
2016-03-31 14:34:08 +03:00
"validator",
"validation",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation"
2015-05-20 03:55:53 +03:00
],
"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-11-29 01:39:50 +03:00
"tonicExampleFilename": ".tonic_example.js",
2015-05-20 03:55:53 +03:00
"dependencies": {
"fast-deep-equal": "^1.0.0",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.3.0"
2015-05-26 04:11:36 +03:00
},
"devDependencies": {
"ajv-async": "^1.0.0-beta.0",
"bluebird": "^3.1.5",
"brfs": "^1.4.3",
"browserify": "^14.1.0",
"chai": "^4.0.1",
"coveralls": "^3.0.0",
"del-cli": "^1.1.0",
"dot": "^1.0.3",
"eslint": "^4.1.0",
2016-04-16 23:43:18 +03:00
"gh-pages-generator": "^0.2.0",
"glob": "^7.0.0",
"if-node-version": "^1.0.0",
"js-beautify": "^1.7.3",
2017-05-24 22:57:55 +03:00
"jshint": "^2.9.4",
"json-schema-test": "^1.3.0",
"karma": "^1.0.0",
"karma-chrome-launcher": "^2.0.0",
2016-06-26 22:51:54 +03:00
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"mocha": "^4.0.0",
2017-11-06 12:35:46 +03:00
"nodent": "^3.1.3",
"nyc": "^11.0.2",
"phantomjs-prebuilt": "^2.1.4",
"pre-commit": "^1.1.1",
"require-globify": "^1.3.0",
"typescript": "^2.0.3",
2017-10-22 16:48:13 +03:00
"uglify-js": "^3.1.5",
"watch": "^1.0.0"
2015-05-20 03:55:53 +03:00
}
}