Changeset 79a0317 for imaps-frontend/node_modules/espree
- Timestamp:
- 01/21/25 03:08:24 (3 months ago)
- Branches:
- main
- Parents:
- 0c6b92a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/espree/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "espree", 3 "description": "An Esprima-compatible JavaScript parser built on Acorn", 4 "author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>", 5 "homepage": "https://github.com/eslint/espree", 6 "main": "dist/espree.cjs", 7 "type": "module", 8 "exports": { 9 ".": [ 10 { 11 "import": "./espree.js", 12 "require": "./dist/espree.cjs", 13 "default": "./dist/espree.cjs" 14 }, 15 "./dist/espree.cjs" 16 ], 17 "./package.json": "./package.json" 2 "_from": "espree@^9.6.1", 3 "_id": "espree@9.6.1", 4 "_inBundle": false, 5 "_integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 6 "_location": "/espree", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "espree@^9.6.1", 12 "name": "espree", 13 "escapedName": "espree", 14 "rawSpec": "^9.6.1", 15 "saveSpec": null, 16 "fetchSpec": "^9.6.1" 18 17 }, 19 "version": "9.6.1", 20 "files": [ 21 "lib", 22 "dist/espree.cjs", 23 "espree.js" 18 "_requiredBy": [ 19 "/@eslint/eslintrc", 20 "/eslint" 24 21 ], 25 "engines": { 26 "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 22 "_resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 23 "_shasum": "a2a17b8e434690a5432f2f8018ce71d331a48c6f", 24 "_spec": "espree@^9.6.1", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/eslint", 26 "author": { 27 "name": "Nicholas C. Zakas", 28 "email": "nicholas+npm@nczconsulting.com" 27 29 }, 28 "repository": "eslint/espree",29 30 "bugs": { 30 31 "url": "https://github.com/eslint/espree/issues" 31 32 }, 32 "funding": "https://opencollective.com/eslint", 33 "license": "BSD-2-Clause", 33 "bundleDependencies": false, 34 34 "dependencies": { 35 35 "acorn": "^8.9.0", … … 37 37 "eslint-visitor-keys": "^3.4.1" 38 38 }, 39 "deprecated": false, 40 "description": "An Esprima-compatible JavaScript parser built on Acorn", 39 41 "devDependencies": { 40 42 "@rollup/plugin-commonjs": "^17.1.0", … … 56 58 "yorkie": "^2.0.0" 57 59 }, 60 "engines": { 61 "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 62 }, 63 "exports": { 64 ".": [ 65 { 66 "import": "./espree.js", 67 "require": "./dist/espree.cjs", 68 "default": "./dist/espree.cjs" 69 }, 70 "./dist/espree.cjs" 71 ], 72 "./package.json": "./package.json" 73 }, 74 "files": [ 75 "lib", 76 "dist/espree.cjs", 77 "espree.js" 78 ], 79 "funding": "https://opencollective.com/eslint", 80 "gitHooks": { 81 "pre-commit": "lint-staged" 82 }, 83 "homepage": "https://github.com/eslint/espree", 58 84 "keywords": [ 59 85 "ast", … … 64 90 "acorn" 65 91 ], 66 "gitHooks": { 67 "pre-commit": "lint-staged" 92 "license": "BSD-2-Clause", 93 "main": "dist/espree.cjs", 94 "name": "espree", 95 "repository": { 96 "type": "git", 97 "url": "git+https://github.com/eslint/espree.git" 68 98 }, 69 99 "scripts": { 70 "unit": "npm-run-all -s unit:*",71 "unit:esm": "c8 mocha --color --reporter progress --timeout 30000 'tests/lib/**/*.js'",72 "unit:cjs": "mocha --color --reporter progress --timeout 30000 tests/lib/commonjs.cjs",73 "test": "npm-run-all -p unit lint",74 "lint": "eslint . --report-unused-disable-directives",75 "fixlint": "npm run lint -- --fix",76 100 "build": "rollup -c rollup.config.js", 77 101 "build:debug": "npm run build -- -m", 78 "update-version": "node tools/update-version.js", 79 "pretest": "npm run build", 80 "prepublishOnly": "npm run update-version && npm run build", 81 "sync-docs": "node sync-docs.js", 82 "generate-release": "eslint-generate-release", 102 "fixlint": "npm run lint -- --fix", 83 103 "generate-alpharelease": "eslint-generate-prerelease alpha", 84 104 "generate-betarelease": "eslint-generate-prerelease beta", 85 105 "generate-rcrelease": "eslint-generate-prerelease rc", 86 "publish-release": "eslint-publish-release" 87 } 106 "generate-release": "eslint-generate-release", 107 "lint": "eslint . --report-unused-disable-directives", 108 "prepublishOnly": "npm run update-version && npm run build", 109 "pretest": "npm run build", 110 "publish-release": "eslint-publish-release", 111 "sync-docs": "node sync-docs.js", 112 "test": "npm-run-all -p unit lint", 113 "unit": "npm-run-all -s unit:*", 114 "unit:cjs": "mocha --color --reporter progress --timeout 30000 tests/lib/commonjs.cjs", 115 "unit:esm": "c8 mocha --color --reporter progress --timeout 30000 'tests/lib/**/*.js'", 116 "update-version": "node tools/update-version.js" 117 }, 118 "type": "module", 119 "version": "9.6.1" 88 120 }
Note:
See TracChangeset
for help on using the changeset viewer.