Path: blob/master/node_modules/ajv/package.json
3965 views
{1"name": "ajv",2"version": "6.12.6",3"description": "Another JSON Schema Validator",4"main": "lib/ajv.js",5"typings": "lib/ajv.d.ts",6"files": [7"lib/",8"dist/",9"scripts/",10"LICENSE",11".tonic_example.js"12],13"scripts": {14"eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite",15"jshint": "jshint lib/{compile/,}*.js",16"lint": "npm run jshint && npm run eslint",17"test-spec": "mocha spec/{**/,}*.spec.js -R spec",18"test-fast": "AJV_FAST_TEST=true npm run test-spec",19"test-debug": "npm run test-spec -- --inspect-brk",20"test-cov": "nyc npm run test-spec",21"test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",22"bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",23"bundle-beautify": "node ./scripts/bundle.js js-beautify",24"build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js",25"test-karma": "karma start",26"test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",27"test-all": "npm run test-cov && if-node-version 10 npm run test-browser",28"test": "npm run lint && npm run build && npm run test-all",29"prepublish": "npm run build && npm run bundle",30"watch": "watch \"npm run build\" ./lib/dot"31},32"nyc": {33"exclude": [34"**/spec/**",35"node_modules"36],37"reporter": [38"lcov",39"text-summary"40]41},42"repository": {43"type": "git",44"url": "https://github.com/ajv-validator/ajv.git"45},46"keywords": [47"JSON",48"schema",49"validator",50"validation",51"jsonschema",52"json-schema",53"json-schema-validator",54"json-schema-validation"55],56"author": "Evgeny Poberezkin",57"license": "MIT",58"bugs": {59"url": "https://github.com/ajv-validator/ajv/issues"60},61"homepage": "https://github.com/ajv-validator/ajv",62"tonicExampleFilename": ".tonic_example.js",63"dependencies": {64"fast-deep-equal": "^3.1.1",65"fast-json-stable-stringify": "^2.0.0",66"json-schema-traverse": "^0.4.1",67"uri-js": "^4.2.2"68},69"devDependencies": {70"ajv-async": "^1.0.0",71"bluebird": "^3.5.3",72"brfs": "^2.0.0",73"browserify": "^16.2.0",74"chai": "^4.0.1",75"coveralls": "^3.0.1",76"del-cli": "^3.0.0",77"dot": "^1.0.3",78"eslint": "^7.3.1",79"gh-pages-generator": "^0.2.3",80"glob": "^7.0.0",81"if-node-version": "^1.0.0",82"js-beautify": "^1.7.3",83"jshint": "^2.10.2",84"json-schema-test": "^2.0.0",85"karma": "^5.0.0",86"karma-chrome-launcher": "^3.0.0",87"karma-mocha": "^2.0.0",88"karma-sauce-launcher": "^4.1.3",89"mocha": "^8.0.1",90"nyc": "^15.0.0",91"pre-commit": "^1.1.1",92"require-globify": "^1.3.0",93"typescript": "^3.9.5",94"uglify-js": "^3.6.9",95"watch": "^1.0.0"96},97"collective": {98"type": "opencollective",99"url": "https://opencollective.com/ajv"100},101"funding": {102"type": "github",103"url": "https://github.com/sponsors/epoberezkin"104}105}106107108