UNPKG

3.3 kBJSONView Raw
1{
2 "name": "vue-eslint-parser",
3 "version": "7.1.0",
4 "description": "The ESLint custom parser for `.vue` files.",
5 "engines": {
6 "node": ">=8.10"
7 },
8 "main": "index.js",
9 "files": [
10 "index.*"
11 ],
12 "peerDependencies": {
13 "eslint": ">=5.0.0"
14 },
15 "dependencies": {
16 "debug": "^4.1.1",
17 "eslint-scope": "^5.0.0",
18 "eslint-visitor-keys": "^1.1.0",
19 "espree": "^6.2.1",
20 "esquery": "^1.0.1",
21 "lodash": "^4.17.15"
22 },
23 "devDependencies": {
24 "@mysticatea/eslint-plugin": "^11.0.0",
25 "@types/debug": "0.0.30",
26 "@types/estree": "0.0.38",
27 "@types/lodash": "^4.14.120",
28 "@types/mocha": "^5.2.4",
29 "@types/node": "^10.12.21",
30 "@typescript-eslint/parser": "^2.31.0",
31 "babel-eslint": "^10.0.1",
32 "chokidar": "^2.0.4",
33 "codecov": "^3.1.0",
34 "cross-spawn": "^6.0.5",
35 "dts-bundle": "^0.7.3",
36 "eslint": "^7.0.0",
37 "fs-extra": "^7.0.1",
38 "mocha": "^6.1.4",
39 "npm-run-all": "^4.1.5",
40 "nyc": "^14.0.0",
41 "opener": "^1.5.1",
42 "rimraf": "^2.6.3",
43 "rollup": "^1.1.2",
44 "rollup-plugin-node-resolve": "^4.0.0",
45 "rollup-plugin-sourcemaps": "^0.4.2",
46 "ts-node": "^8.1.0",
47 "typescript": "~3.4.4",
48 "wait-on": "^3.2.0",
49 "warun": "^1.0.0"
50 },
51 "scripts": {
52 "prebuild": "npm run -s clean",
53 "build": "tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts",
54 "clean": "rimraf .nyc_output .temp coverage index.*",
55 "codecov": "codecov",
56 "coverage": "opener ./coverage/lcov-report/index.html",
57 "lint": "node -e \"if(process.env.ESLINT=='5')process.exit(1)\" && eslint src test --ext .js,.ts || node -e \"if(process.env.ESLINT!='5')process.exit(1)\"",
58 "setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
59 "pretest": "run-s build lint",
60 "test": "npm run -s test:mocha",
61 "test:mocha": "nyc mocha \"test/*.js\" --reporter dot --timeout 10000",
62 "preupdate-fixtures": "npm run -s build",
63 "update-fixtures": "node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js",
64 "preversion": "npm test",
65 "version": "npm run -s build",
66 "postversion": "git push && git push --tags",
67 "prewatch": "npm run -s clean",
68 "watch": "run-p watch:*",
69 "watch:tsc": "tsc --module es2015 --watch",
70 "watch:rollup": "wait-on .temp/index.js && rollup -c -o index.js --watch",
71 "watch:test": "wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000",
72 "watch:update-ast": "wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js",
73 "watch:coverage-report": "wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"
74 },
75 "repository": {
76 "type": "git",
77 "url": "git+https://github.com/mysticatea/vue-eslint-parser.git"
78 },
79 "keywords": [],
80 "author": "Toru Nagashima",
81 "license": "MIT",
82 "bugs": {
83 "url": "https://github.com/mysticatea/vue-eslint-parser/issues"
84 },
85 "homepage": "https://github.com/mysticatea/vue-eslint-parser#readme",
86 "funding": "https://github.com/sponsors/mysticatea"
87}