linwenling
2023-03-28 103e2d8621b25ca6d99193823dcf1d65cab395ce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
  "_from": "esquery@^1.2.0",
  "_id": "esquery@1.5.0",
  "_inBundle": false,
  "_integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
  "_location": "/esquery",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "esquery@^1.2.0",
    "name": "esquery",
    "escapedName": "esquery",
    "rawSpec": "^1.2.0",
    "saveSpec": null,
    "fetchSpec": "^1.2.0"
  },
  "_requiredBy": [
    "/eslint",
    "/vue-eslint-parser"
  ],
  "_resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
  "_shasum": "6ce17738de8577694edd7361c57182ac8cb0db0b",
  "_spec": "esquery@^1.2.0",
  "_where": "C:\\Users\\feige\\Desktop\\RuoYi-Vue-master\\RuoYi-Vue-master\\ruoyi-ui\\node_modules\\eslint",
  "author": {
    "name": "Joel Feenstra",
    "email": "jrfeenst+esquery@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/estools/esquery/issues"
  },
  "bundleDependencies": false,
  "contributors": [],
  "dependencies": {
    "estraverse": "^5.1.0"
  },
  "deprecated": false,
  "description": "A query library for ECMAScript AST using a CSS selector like query language.",
  "devDependencies": {
    "@babel/core": "^7.9.0",
    "@babel/preset-env": "^7.9.5",
    "@babel/register": "^7.9.0",
    "@rollup/plugin-commonjs": "^11.1.0",
    "@rollup/plugin-json": "^4.0.2",
    "@rollup/plugin-node-resolve": "^7.1.3",
    "babel-plugin-transform-es2017-object-entries": "0.0.5",
    "chai": "4.2.0",
    "eslint": "^6.8.0",
    "esprima": "~4.0.1",
    "mocha": "7.1.1",
    "nyc": "^15.0.1",
    "pegjs": "~0.10.0",
    "rollup": "^1.32.1",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-terser": "^5.3.0"
  },
  "engines": {
    "node": ">=0.10"
  },
  "files": [
    "dist/*.js",
    "dist/*.map",
    "parser.js",
    "license.txt",
    "README.md"
  ],
  "homepage": "https://github.com/estools/esquery/",
  "keywords": [
    "ast",
    "ecmascript",
    "javascript",
    "query"
  ],
  "license": "BSD-3-Clause",
  "main": "dist/esquery.min.js",
  "module": "dist/esquery.esm.min.js",
  "name": "esquery",
  "nyc": {
    "branches": 100,
    "lines": 100,
    "functions": 100,
    "statements": 100,
    "reporter": [
      "html",
      "text"
    ],
    "exclude": [
      "parser.js",
      "dist",
      "tests"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/estools/esquery.git"
  },
  "scripts": {
    "build": "npm run build:parser && npm run build:browser",
    "build:browser": "rollup -c",
    "build:parser": "rm parser.js && pegjs --cache --format umd -o \"parser.js\" \"grammar.pegjs\"",
    "lint": "eslint .",
    "mocha": "mocha --require chai/register-assert --require @babel/register tests",
    "prepublishOnly": "npm run build && npm test",
    "test": "nyc npm run mocha && npm run lint",
    "test:ci": "npm run mocha"
  },
  "version": "1.5.0"
}