1 | {
|
---|
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"
|
---|
24 | },
|
---|
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"
|
---|
36 | },
|
---|
37 | "bugs": {
|
---|
38 | "url": "https://github.com/airbnb/babel-plugin-dynamic-import-node/issues"
|
---|
39 | },
|
---|
40 | "dependencies": {
|
---|
41 | "object.assign": "^4.1.0"
|
---|
42 | },
|
---|
43 | "description": "Babel plugin to transpile import() to a deferred require(), for node",
|
---|
44 | "devDependencies": {
|
---|
45 | "@babel/core": "^7.9.0",
|
---|
46 | "@babel/plugin-external-helpers": "^7.8.3",
|
---|
47 | "@babel/plugin-transform-template-literals": "^7.8.3",
|
---|
48 | "@babel/preset-env": "^7.9.5",
|
---|
49 | "airbnb-js-shims": "^2.2.1",
|
---|
50 | "babel-cli": "^6.26.0",
|
---|
51 | "babel-core": "^6.26.3",
|
---|
52 | "babel-eslint": "^9.0.0",
|
---|
53 | "babel-plugin-add-module-exports": "^0.2.1",
|
---|
54 | "babel-plugin-external-helpers": "^6.22.0",
|
---|
55 | "babel-plugin-transform-es2015-template-literals": "^6.22.0",
|
---|
56 | "babel-plugin-transform-replace-object-assign": "^1.0.0",
|
---|
57 | "babel-preset-airbnb": "^2.6.0",
|
---|
58 | "babel-preset-es2015": "^6.24.1",
|
---|
59 | "babel-register": "^6.26.0",
|
---|
60 | "eslint": "^6.8.0",
|
---|
61 | "eslint-config-airbnb-base": "^14.1.0",
|
---|
62 | "eslint-plugin-import": "^2.20.2",
|
---|
63 | "in-publish": "^2.0.1",
|
---|
64 | "rimraf": "^2.7.1",
|
---|
65 | "safe-publish-latest": "^1.1.4",
|
---|
66 | "tape": "^5.0.0-next.5"
|
---|
67 | },
|
---|
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"
|
---|
105 | }
|
---|