ajv/package.json

99 lines
2.9 KiB
JSON
Raw Normal View History

2015-05-20 03:55:53 +03:00
{
2015-05-30 01:32:47 +03:00
"name": "ajv",
2019-07-14 16:38:33 +03:00
"version": "6.10.2",
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": {
2019-02-10 15:05:05 +03:00
"eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
"jshint": "jshint lib/{compile/,}*.js",
2019-02-10 21:31:24 +03:00
"lint": "npm run jshint && npm run eslint",
2019-02-10 15:05:05 +03:00
"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",
2019-02-10 21:31:24 +03:00
"test-debug": "npm run test-spec -- --inspect-brk",
2016-10-04 23:16:18 +03:00
"test-cov": "nyc npm run test-spec",
"test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",
"bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
"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",
"test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
2019-02-10 21:31:24 +03:00
"test-all": "npm run test-ts && npm run test-cov && if-node-version 10 npm run test-browser",
"test": "npm run lint && npm run build && npm run test-all",
"prepublish": "npm run build && npm run bundle",
"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": "^2.0.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
2015-05-26 04:11:36 +03:00
},
"devDependencies": {
2018-01-07 15:58:38 +03:00
"ajv-async": "^1.0.0",
2018-11-29 09:47:30 +03:00
"bluebird": "^3.5.3",
"brfs": "^2.0.0",
2018-05-08 23:18:06 +03:00
"browserify": "^16.2.0",
"chai": "^4.0.1",
2018-05-08 23:18:06 +03:00
"coveralls": "^3.0.1",
"del-cli": "^2.0.0",
"dot": "^1.0.3",
"eslint": "^6.0.0",
2018-05-08 23:18:06 +03:00
"gh-pages-generator": "^0.2.3",
"glob": "^7.0.0",
"if-node-version": "^1.0.0",
"js-beautify": "^1.7.3",
2019-07-06 19:51:19 +03:00
"jshint": "^2.10.2",
2017-12-02 20:40:01 +03:00
"json-schema-test": "^2.0.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^3.0.0",
2016-06-26 22:51:54 +03:00
"karma-mocha": "^1.1.1",
"karma-sauce-launcher": "^2.0.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"pre-commit": "^1.1.1",
"require-globify": "^1.3.0",
2018-05-08 23:18:06 +03:00
"typescript": "^2.8.3",
"uglify-js": "^3.3.24",
"watch": "^1.0.0"
2015-05-20 03:55:53 +03:00
}
}