package.json (1440B)
1 { 2 "name": "ajv-keywords", 3 "version": "3.5.2", 4 "description": "Custom JSON-Schema keywords for Ajv validator", 5 "main": "index.js", 6 "typings": "ajv-keywords.d.ts", 7 "scripts": { 8 "build": "node node_modules/ajv/scripts/compile-dots.js node_modules/ajv/lib keywords", 9 "prepublish": "npm run build", 10 "test": "npm run build && npm run eslint && npm run test-cov", 11 "eslint": "eslint index.js keywords/*.js spec", 12 "test-spec": "mocha spec/*.spec.js -R spec", 13 "test-cov": "istanbul cover -x 'spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec" 14 }, 15 "repository": { 16 "type": "git", 17 "url": "git+https://github.com/epoberezkin/ajv-keywords.git" 18 }, 19 "keywords": [ 20 "JSON-Schema", 21 "ajv", 22 "keywords" 23 ], 24 "files": [ 25 "index.js", 26 "ajv-keywords.d.ts", 27 "keywords" 28 ], 29 "author": "Evgeny Poberezkin", 30 "license": "MIT", 31 "bugs": { 32 "url": "https://github.com/epoberezkin/ajv-keywords/issues" 33 }, 34 "homepage": "https://github.com/epoberezkin/ajv-keywords#readme", 35 "peerDependencies": { 36 "ajv": "^6.9.1" 37 }, 38 "devDependencies": { 39 "ajv": "^6.9.1", 40 "ajv-pack": "^0.3.0", 41 "chai": "^4.2.0", 42 "coveralls": "^3.0.2", 43 "dot": "^1.1.1", 44 "eslint": "^7.2.0", 45 "glob": "^7.1.3", 46 "istanbul": "^0.4.3", 47 "js-beautify": "^1.8.9", 48 "json-schema-test": "^2.0.0", 49 "mocha": "^8.0.1", 50 "pre-commit": "^1.1.3", 51 "uuid": "^8.1.0" 52 } 53 }