- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/babel-plugin-dynamic-import-node/package.json
rceaed42 r59329aa 1 1 { 2 "name": "babel-plugin-dynamic-import-node", 3 "version": "2.3.3", 4 "description": "Babel plugin to transpile import() to a deferred require(), for node", 5 "main": "lib/index.js", 6 "directories": { 7 "test": "test" 2 "_args": [ 3 [ 4 "babel-plugin-dynamic-import-node@2.3.3", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "babel-plugin-dynamic-import-node@2.3.3", 10 "_id": "babel-plugin-dynamic-import-node@2.3.3", 11 "_inBundle": false, 12 "_integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", 13 "_location": "/babel-plugin-dynamic-import-node", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "babel-plugin-dynamic-import-node@2.3.3", 19 "name": "babel-plugin-dynamic-import-node", 20 "escapedName": "babel-plugin-dynamic-import-node", 21 "rawSpec": "2.3.3", 22 "saveSpec": null, 23 "fetchSpec": "2.3.3" 8 24 }, 9 "scripts": { 10 "clean": "rimraf lib", 11 "prebuild": "npm run clean", 12 "build": "babel src --out-dir lib", 13 "pretest": "npm run lint", 14 "test": "npm run tests-only", 15 "tests-only": "tape --require airbnb-js-shims --require babel-register test", 16 "lint": "eslint .", 17 "prepublish": "not-in-publish || (safe-publish-latest && npm run build)", 18 "check-changelog": "expr $(git status --porcelain 2>/dev/null| grep \"^\\s*M.*CHANGELOG.md\" | wc -l) >/dev/null || (echo 'Please edit CHANGELOG.md' && exit 1)", 19 "check-only-changelog-changed": "(expr $(git status --porcelain 2>/dev/null| grep -v \"CHANGELOG.md\" | wc -l) >/dev/null && echo 'Only CHANGELOG.md may have uncommitted changes' && exit 1) || exit 0", 20 "version:major": "npm --no-git-tag-version version major", 21 "version:minor": "npm --no-git-tag-version version minor", 22 "version:patch": "npm --no-git-tag-version version patch", 23 "postversion": "git commit package.json CHANGELOG.md -m \"v$npm_package_version\" && npm run tag && git push && git push --tags", 24 "preversion": "npm run test && npm run check-changelog && npm run check-only-changelog-changed", 25 "tag": "git tag v$npm_package_version" 25 "_requiredBy": [ 26 "/@babel/plugin-transform-modules-amd", 27 "/@babel/plugin-transform-modules-commonjs", 28 "/@babel/plugin-transform-modules-systemjs" 29 ], 30 "_resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", 31 "_spec": "2.3.3", 32 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 33 "author": { 34 "name": "Jordan Gensler", 35 "email": "jordan.gensler@airbnb.com" 26 36 }, 27 "repository": {28 "type": "git",29 "url": "git+https://github.com/airbnb/babel-plugin-dynamic-import-node.git"30 },31 "keywords": [32 "babel",33 "plugin",34 "dynamic",35 "import",36 "node"37 ],38 "author": "Jordan Gensler <jordan.gensler@airbnb.com>",39 "license": "MIT",40 37 "bugs": { 41 38 "url": "https://github.com/airbnb/babel-plugin-dynamic-import-node/issues" 42 39 }, 43 "homepage": "https://github.com/airbnb/babel-plugin-dynamic-import-node#readme", 40 "dependencies": { 41 "object.assign": "^4.1.0" 42 }, 43 "description": "Babel plugin to transpile import() to a deferred require(), for node", 44 44 "devDependencies": { 45 45 "@babel/core": "^7.9.0", … … 66 66 "tape": "^5.0.0-next.5" 67 67 }, 68 "dependencies": { 69 "object.assign": "^4.1.0" 70 } 68 "directories": { 69 "test": "test" 70 }, 71 "homepage": "https://github.com/airbnb/babel-plugin-dynamic-import-node#readme", 72 "keywords": [ 73 "babel", 74 "plugin", 75 "dynamic", 76 "import", 77 "node" 78 ], 79 "license": "MIT", 80 "main": "lib/index.js", 81 "name": "babel-plugin-dynamic-import-node", 82 "repository": { 83 "type": "git", 84 "url": "git+https://github.com/airbnb/babel-plugin-dynamic-import-node.git" 85 }, 86 "scripts": { 87 "build": "babel src --out-dir lib", 88 "check-changelog": "expr $(git status --porcelain 2>/dev/null| grep \"^\\s*M.*CHANGELOG.md\" | wc -l) >/dev/null || (echo 'Please edit CHANGELOG.md' && exit 1)", 89 "check-only-changelog-changed": "(expr $(git status --porcelain 2>/dev/null| grep -v \"CHANGELOG.md\" | wc -l) >/dev/null && echo 'Only CHANGELOG.md may have uncommitted changes' && exit 1) || exit 0", 90 "clean": "rimraf lib", 91 "lint": "eslint .", 92 "postversion": "git commit package.json CHANGELOG.md -m \"v$npm_package_version\" && npm run tag && git push && git push --tags", 93 "prebuild": "npm run clean", 94 "prepublish": "not-in-publish || (safe-publish-latest && npm run build)", 95 "pretest": "npm run lint", 96 "preversion": "npm run test && npm run check-changelog && npm run check-only-changelog-changed", 97 "tag": "git tag v$npm_package_version", 98 "test": "npm run tests-only", 99 "tests-only": "tape --require airbnb-js-shims --require babel-register test", 100 "version:major": "npm --no-git-tag-version version major", 101 "version:minor": "npm --no-git-tag-version version minor", 102 "version:patch": "npm --no-git-tag-version version patch" 103 }, 104 "version": "2.3.3" 71 105 }
Note:
See TracChangeset
for help on using the changeset viewer.