|
| 1 | +{ |
| 2 | + "name": "jsonc-eslint-parser", |
| 3 | + "version": "0.5.0", |
| 4 | + "description": "JSON, JSONC and JSON5 parser for use with ESLint plugins", |
| 5 | + "main": "lib/index.js", |
| 6 | + "files": [ |
| 7 | + "lib" |
| 8 | + ], |
| 9 | + "scripts": { |
| 10 | + "build": "npm run build:ts", |
| 11 | + "build:ts": "tsc --project ./tsconfig.build.json", |
| 12 | + "clean": "rimraf .nyc_output lib coverage", |
| 13 | + "lint": "eslint \"tests\" \"src\" --ext .js,.ts", |
| 14 | + "eslint-fix": "eslint \"tests\" \"src\" --ext .js,.ts --fix", |
| 15 | + "test:base": "mocha --require ts-node/register \"tests/src/**/*.ts\" --reporter dot --timeout 60000", |
| 16 | + "test": "npm run test:base", |
| 17 | + "test:nyc": "nyc --reporter=lcov npm run test:base", |
| 18 | + "test:debug": "mocha --require ts-node/register --inspect \"tests/src/**/*.ts\" --reporter dot", |
| 19 | + "update": "ts-node ./tools/update.ts && npm run eslint-fix && npm run test:nyc", |
| 20 | + "preversion": "npm test && npm run update && git add .", |
| 21 | + "version": "npm run eslint-fix && git add .", |
| 22 | + "update-fixtures": "ts-node ./tools/update-fixtures.ts" |
| 23 | + }, |
| 24 | + "repository": { |
| 25 | + "type": "git", |
| 26 | + "url": "git+https://github.com/ota-meshi/jsonc-eslint-parser.git" |
| 27 | + }, |
| 28 | + "keywords": [ |
| 29 | + "eslint", |
| 30 | + "json", |
| 31 | + "jsonc", |
| 32 | + "json5", |
| 33 | + "parser" |
| 34 | + ], |
| 35 | + "author": "Yosuke Ota", |
| 36 | + "license": "MIT", |
| 37 | + "bugs": { |
| 38 | + "url": "https://github.com/ota-meshi/jsonc-eslint-parser/issues" |
| 39 | + }, |
| 40 | + "homepage": "https://github.com/ota-meshi/jsonc-eslint-parser#readme", |
| 41 | + "devDependencies": { |
| 42 | + "@mysticatea/eslint-plugin": "^13.0.0", |
| 43 | + "@types/eslint": "^7.2.0", |
| 44 | + "@types/estree": "0.0.44", |
| 45 | + "@types/mocha": "^7.0.2", |
| 46 | + "@types/natural-compare": "^1.4.0", |
| 47 | + "@types/node": "^14.0.13", |
| 48 | + "@types/semver": "^7.3.1", |
| 49 | + "babel-eslint": "^10.1.0", |
| 50 | + "eslint": "^7.3.0", |
| 51 | + "eslint-plugin-jsonc": "^0.4.0", |
| 52 | + "mocha": "^7.0.0", |
| 53 | + "nyc": "^15.1.0", |
| 54 | + "prettier": "^2.0.5", |
| 55 | + "semver": "^7.3.2", |
| 56 | + "ts-node": "^8.10.2", |
| 57 | + "typescript": "^3.9.5" |
| 58 | + }, |
| 59 | + "dependencies": { |
| 60 | + "eslint-visitor-keys": "^1.3.0", |
| 61 | + "espree": "^6.0.0 || ^7.2.0" |
| 62 | + } |
| 63 | +} |
0 commit comments