Files
codeql-action/node_modules/espree/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.5 KiB
JSON
Raw Normal View History

2020-09-14 10:42:37 +01:00
{
"name": "espree",
"description": "An Esprima-compatible JavaScript parser built on Acorn",
"author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
"homepage": "https://github.com/eslint/espree",
2023-01-18 20:50:03 +00:00
"main": "dist/espree.cjs",
"type": "module",
"exports": {
".": [
{
"import": "./espree.js",
"require": "./dist/espree.cjs",
"default": "./dist/espree.cjs"
},
"./dist/espree.cjs"
],
"./package.json": "./package.json"
},
2023-08-01 03:35:02 -07:00
"version": "9.6.1",
2020-09-14 10:42:37 +01:00
"files": [
"lib",
2023-01-18 20:50:03 +00:00
"dist/espree.cjs",
2020-09-14 10:42:37 +01:00
"espree.js"
],
"engines": {
2023-01-18 20:50:03 +00:00
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2020-09-14 10:42:37 +01:00
},
"repository": "eslint/espree",
"bugs": {
2023-01-18 20:50:03 +00:00
"url": "https://github.com/eslint/espree/issues"
2020-09-14 10:42:37 +01:00
},
2023-01-18 20:50:03 +00:00
"funding": "https://opencollective.com/eslint",
2020-09-14 10:42:37 +01:00
"license": "BSD-2-Clause",
"dependencies": {
2023-07-13 09:09:17 +00:00
"acorn": "^8.9.0",
2023-01-18 20:50:03 +00:00
"acorn-jsx": "^5.3.2",
2023-07-13 09:09:17 +00:00
"eslint-visitor-keys": "^3.4.1"
2020-09-14 10:42:37 +01:00
},
"devDependencies": {
2023-01-18 20:50:03 +00:00
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"c8": "^7.11.0",
"chai": "^4.3.6",
2023-08-01 03:35:02 -07:00
"eslint": "^8.44.0",
"eslint-config-eslint": "^8.0.0",
"eslint-plugin-n": "^16.0.0",
2023-01-18 20:50:03 +00:00
"eslint-release": "^3.2.0",
2020-09-14 10:42:37 +01:00
"esprima-fb": "^8001.2001.0-dev-harmony-fb",
2023-08-01 03:35:02 -07:00
"globals": "^13.20.0",
2023-07-13 09:09:17 +00:00
"lint-staged": "^13.2.0",
2023-01-18 20:50:03 +00:00
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"rollup": "^2.41.2",
2023-07-13 09:09:17 +00:00
"shelljs": "^0.3.0",
"yorkie": "^2.0.0"
2020-09-14 10:42:37 +01:00
},
"keywords": [
"ast",
"ecmascript",
"javascript",
"parser",
"syntax",
"acorn"
],
2023-07-13 09:09:17 +00:00
"gitHooks": {
"pre-commit": "lint-staged"
},
2020-09-14 10:42:37 +01:00
"scripts": {
2023-01-18 20:50:03 +00:00
"unit": "npm-run-all -s unit:*",
"unit:esm": "c8 mocha --color --reporter progress --timeout 30000 'tests/lib/**/*.js'",
"unit:cjs": "mocha --color --reporter progress --timeout 30000 tests/lib/commonjs.cjs",
"test": "npm-run-all -p unit lint",
2023-08-01 03:35:02 -07:00
"lint": "eslint . --report-unused-disable-directives",
2023-01-18 20:50:03 +00:00
"fixlint": "npm run lint -- --fix",
"build": "rollup -c rollup.config.js",
2023-07-13 09:09:17 +00:00
"build:debug": "npm run build -- -m",
2023-01-18 20:50:03 +00:00
"update-version": "node tools/update-version.js",
"pretest": "npm run build",
"prepublishOnly": "npm run update-version && npm run build",
"sync-docs": "node sync-docs.js",
2020-09-14 10:42:37 +01:00
"generate-release": "eslint-generate-release",
"generate-alpharelease": "eslint-generate-prerelease alpha",
"generate-betarelease": "eslint-generate-prerelease beta",
"generate-rcrelease": "eslint-generate-prerelease rc",
"publish-release": "eslint-publish-release"
}
2022-02-24 17:03:29 +00:00
}