Changeset 79a0317 for imaps-frontend/node_modules/jsx-ast-utils
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/jsx-ast-utils/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "jsx-ast-utils", 3 "version": "3.3.5", 2 "_from": "jsx-ast-utils@3.3.5", 3 "_id": "jsx-ast-utils@3.3.5", 4 "_inBundle": false, 5 "_integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", 6 "_location": "/jsx-ast-utils", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "version", 10 "registry": true, 11 "raw": "jsx-ast-utils@3.3.5", 12 "name": "jsx-ast-utils", 13 "escapedName": "jsx-ast-utils", 14 "rawSpec": "3.3.5", 15 "saveSpec": null, 16 "fetchSpec": "3.3.5" 17 }, 18 "_requiredBy": [ 19 "/eslint-plugin-react" 20 ], 21 "_resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", 22 "_shasum": "4766bd05a8e2a11af222becd19e15575e52a853a", 23 "_spec": "jsx-ast-utils@3.3.5", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/eslint-plugin-react", 25 "author": { 26 "name": "Ethan Cohen" 27 }, 28 "auto-changelog": { 29 "output": "CHANGELOG.md", 30 "template": "keepachangelog", 31 "unreleased": false, 32 "commitLimit": false, 33 "backfillLimit": false, 34 "hideCredit": true, 35 "startingVersion": "3.3.4" 36 }, 37 "bugs": { 38 "url": "https://github.com/jsx-eslint/jsx-ast-utils/issues" 39 }, 40 "bundleDependencies": false, 41 "dependencies": { 42 "array-includes": "^3.1.6", 43 "array.prototype.flat": "^1.3.1", 44 "object.assign": "^4.1.4", 45 "object.values": "^1.1.6" 46 }, 47 "deprecated": false, 4 48 "description": "AST utility module for statically analyzing JSX", 5 "main": "lib/index.js",6 "scripts": {7 "prepack": "npmignore --auto --commentLines=autogenerated && npm run build",8 "prebuild": "rimraf lib",9 "build": "babel src --out-dir lib",10 "prepublishOnly": "safe-publish-latest && npm test",11 "prepublish": "not-in-publish || npm run prepublishOnly",12 "prelint": "npm run build",13 "lint": "eslint .",14 "pretest": "npm run lint",15 "test": "npm run tests-only --",16 "posttest": "aud --production",17 "tests-only": "jest --coverage",18 "test:watch": "npm run tests-only -- --watch",19 "version": "auto-changelog && git add CHANGELOG.md",20 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""21 },22 49 "devDependencies": { 23 50 "@babel/core": "^7.22.9", … … 50 77 "node": ">=4.0" 51 78 }, 79 "homepage": "https://github.com/jsx-eslint/jsx-ast-utils#readme", 52 80 "keywords": [ 53 81 "jsx", … … 56 84 "eslint" 57 85 ], 58 "author": "Ethan Cohen",59 "repository": {60 "type": "git",61 "url": "https://github.com/jsx-eslint/jsx-ast-utils"62 },63 86 "license": "MIT", 64 "dependencies": { 65 "array-includes": "^3.1.6", 66 "array.prototype.flat": "^1.3.1", 67 "object.assign": "^4.1.4", 68 "object.values": "^1.1.6" 69 }, 70 "auto-changelog": { 71 "output": "CHANGELOG.md", 72 "template": "keepachangelog", 73 "unreleased": false, 74 "commitLimit": false, 75 "backfillLimit": false, 76 "hideCredit": true, 77 "startingVersion": "3.3.4" 78 }, 87 "main": "lib/index.js", 88 "name": "jsx-ast-utils", 79 89 "publishConfig": { 80 90 "ignore": [ … … 82 92 "jest.config.js" 83 93 ] 84 } 94 }, 95 "repository": { 96 "type": "git", 97 "url": "git+https://github.com/jsx-eslint/jsx-ast-utils.git" 98 }, 99 "scripts": { 100 "build": "babel src --out-dir lib", 101 "lint": "eslint .", 102 "posttest": "aud --production", 103 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 104 "prebuild": "rimraf lib", 105 "prelint": "npm run build", 106 "prepack": "npmignore --auto --commentLines=autogenerated && npm run build", 107 "prepublish": "not-in-publish || npm run prepublishOnly", 108 "prepublishOnly": "safe-publish-latest && npm test", 109 "pretest": "npm run lint", 110 "test": "npm run tests-only --", 111 "test:watch": "npm run tests-only -- --watch", 112 "tests-only": "jest --coverage", 113 "version": "auto-changelog && git add CHANGELOG.md" 114 }, 115 "version": "3.3.5" 85 116 }
Note:
See TracChangeset
for help on using the changeset viewer.