github-pages-deploy-action/node_modules/esquery/package.json

109 lines
2.5 KiB
JSON
Raw Normal View History

2020-03-07 11:45:40 +08:00
{
2020-03-22 05:13:25 +08:00
"_args": [
[
2020-03-31 20:40:00 +08:00
"esquery@1.2.0",
"."
2020-03-22 05:13:25 +08:00
]
],
"_development": true,
2020-03-31 20:40:00 +08:00
"_from": "esquery@1.2.0",
"_id": "esquery@1.2.0",
2020-03-22 05:13:25 +08:00
"_inBundle": false,
2020-03-31 20:40:00 +08:00
"_integrity": "sha512-weltsSqdeWIX9G2qQZz7KlTRJdkkOCTPgLYJUz1Hacf48R4YOwGPHO3+ORfWedqJKbq5WQmsgK90n+pFLIKt/Q==",
2020-03-22 05:13:25 +08:00
"_location": "/esquery",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
2020-03-31 20:40:00 +08:00
"raw": "esquery@1.2.0",
2020-03-22 05:13:25 +08:00
"name": "esquery",
"escapedName": "esquery",
2020-03-31 20:40:00 +08:00
"rawSpec": "1.2.0",
2020-03-22 05:13:25 +08:00
"saveSpec": null,
2020-03-31 20:40:00 +08:00
"fetchSpec": "1.2.0"
2020-03-22 05:13:25 +08:00
},
"_requiredBy": [
"/eslint"
],
2020-03-31 20:40:00 +08:00
"_resolved": "https://registry.npmjs.org/esquery/-/esquery-1.2.0.tgz",
"_spec": "1.2.0",
"_where": ".",
2020-03-22 05:13:25 +08:00
"author": {
"name": "Joel Feenstra",
"email": "jrfeenst+esquery@gmail.com"
},
"bugs": {
2020-03-31 20:40:00 +08:00
"url": "https://github.com/estools/esquery/issues"
2020-03-22 05:13:25 +08:00
},
2020-03-31 20:40:00 +08:00
"contributors": [],
2020-03-22 05:13:25 +08:00
"dependencies": {
2020-03-31 20:40:00 +08:00
"estraverse": "^5.0.0"
2020-03-22 05:13:25 +08:00
},
2020-03-07 11:45:40 +08:00
"description": "A query library for ECMAScript AST using a CSS selector like query language.",
2020-03-22 05:13:25 +08:00
"devDependencies": {
2020-03-31 20:40:00 +08:00
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"esprima": "~4.0.1",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"pegjs": "~0.10.0",
"rollup": "^1.32.0",
"rollup-plugin-terser": "^5.2.0"
2020-03-22 05:13:25 +08:00
},
"engines": {
2020-03-31 20:40:00 +08:00
"node": ">=8.0"
2020-03-22 05:13:25 +08:00
},
2020-03-07 11:45:40 +08:00
"files": [
2020-03-31 20:40:00 +08:00
"dist/*.js",
"dist/*.map",
2020-03-07 11:45:40 +08:00
"parser.js",
"license.txt",
"README.md"
],
2020-03-31 20:40:00 +08:00
"homepage": "https://github.com/estools/esquery/",
2020-03-07 11:45:40 +08:00
"keywords": [
"ast",
"ecmascript",
"javascript",
"query"
],
"license": "BSD-3-Clause",
2020-03-31 20:40:00 +08:00
"main": "dist/esquery.min.js",
"module": "dist/esquery.esm.min.js",
2020-03-22 05:13:25 +08:00
"name": "esquery",
2020-03-31 20:40:00 +08:00
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"reporter": [
"html",
"text"
],
"exclude": [
"parser.js",
"dist",
"tests"
]
},
2020-03-22 05:13:25 +08:00
"repository": {
"type": "git",
2020-03-31 20:40:00 +08:00
"url": "git+https://github.com/estools/esquery.git"
2020-03-07 11:45:40 +08:00
},
2020-03-22 05:13:25 +08:00
"scripts": {
2020-03-31 20:40:00 +08:00
"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 esm tests",
"prepublishOnly": "npm run build && npm test",
"test": "nyc npm run mocha && npm run lint",
"test:ci": "npm run mocha"
2020-03-22 05:13:25 +08:00
},
2020-03-31 20:40:00 +08:00
"version": "1.2.0"
2020-03-07 11:45:40 +08:00
}