{ "name": "babel-plugin-dynamic-import-node-sync", "version": "2.0.1", "description": "Babel 7 plugin to transpile import() to a require(), for node", "main": "lib/index.js", "directories": { "test": "test" }, "scripts": { "clean": "rimraf lib", "prebuild": "npm run clean", "build": "babel src --out-dir lib", "prepare": "npm run build", "pretest": "npm run lint", "test": "npm run tests-only", "tests-only": "mocha", "lint": "eslint .", "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)", "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", "version:major": "npm --no-git-tag-version version major", "version:minor": "npm --no-git-tag-version version minor", "version:patch": "npm --no-git-tag-version version patch", "postversion": "git commit package.json CHANGELOG.md -m \"v$npm_package_version\" && npm run tag && git push && git push --tags", "preversion": "npm run test && npm run check-changelog && npm run check-only-changelog-changed", "tag": "git tag v$npm_package_version" }, "repository": { "type": "git", "url": "git+https://github.com/seeden/babel-plugin-dynamic-import-node-sync.git" }, "keywords": [ "babel", "plugin", "dynamic", "import", "node", "sync", "ssr", "react-router" ], "author": "Zlatko Fedor ", "license": "MIT", "bugs": { "url": "https://github.com/seeden/babel-plugin-dynamic-import-node-sync/issues" }, "homepage": "https://github.com/seeden/babel-plugin-dynamic-import-node-sync#readme", "devDependencies": { "@babel/core": "^7.0.0-beta.39", "airbnb-js-shims": "^1.4.1", "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-eslint": "^8.2.1", "babel-plugin-transform-es2015-template-literals": "^6.22.0", "babel-preset-airbnb": "^2.4.0", "babel-preset-es2015": "^6.24.1", "babel-register": "^6.26.0", "chai": "^4.1.2", "eslint": "^4.17.0", "eslint-config-airbnb-base": "^12.1.0", "eslint-plugin-import": "^2.8.0", "in-publish": "^2.0.0", "mocha": "^5.0.0", "rimraf": "^2.6.2", "safe-publish-latest": "^1.1.1" }, "dependencies": { "@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.39" } }