package.json
1 { 2 "name": "json-schema-traverse", 3 "version": "1.0.0", 4 "description": "Traverse JSON Schema passing each schema object to callback", 5 "main": "index.js", 6 "types": "index.d.ts", 7 "scripts": { 8 "eslint": "eslint index.js spec", 9 "test-spec": "mocha spec -R spec", 10 "test": "npm run eslint && nyc npm run test-spec" 11 }, 12 "repository": { 13 "type": "git", 14 "url": "git+https://github.com/epoberezkin/json-schema-traverse.git" 15 }, 16 "keywords": [ 17 "JSON-Schema", 18 "traverse", 19 "iterate" 20 ], 21 "author": "Evgeny Poberezkin", 22 "license": "MIT", 23 "bugs": { 24 "url": "https://github.com/epoberezkin/json-schema-traverse/issues" 25 }, 26 "homepage": "https://github.com/epoberezkin/json-schema-traverse#readme", 27 "devDependencies": { 28 "eslint": "^7.3.1", 29 "mocha": "^8.0.1", 30 "nyc": "^15.0.0", 31 "pre-commit": "^1.2.2" 32 }, 33 "nyc": { 34 "exclude": [ 35 "**/spec/**", 36 "node_modules" 37 ], 38 "reporter": [ 39 "lcov", 40 "text-summary" 41 ] 42 } 43 }