UNPKG

babel-plugin-system-import-transformer

Version:

Babel plugin that replaces System.import with the equivalent UMD pattern

64 lines (63 loc) 2 kB
{ "name": "babel-plugin-system-import-transformer", "version": "4.0.0", "description": "Babel plugin that replaces System.import with the equivalent UMD pattern", "main": "dist/index.js", "scripts": { "clean": "rimraf build", "build": "npm run clean && ./node_modules/.bin/babel src --out-dir dist", "eslint": "eslint src test", "eslint-fix": "eslint src test --fix", "prettify": "prettier --config .prettierrc --write \"src/**/*.js\" \"test/**/*.js\"", "catch-unprettified": "npm run prettify -- --check", "lint": "npm run catch-unprettified && npm run eslint", "test": "npm run build && npm run lint && node test", "watch": "node test --watch", "prepack": "npm run build" }, "author": "Thodoris Greasidis", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/thgreasi/babel-plugin-system-import-transformer.git" }, "keywords": [ "babel", "babel-plugin", "system", "import", "transformer", "UMD" ], "bugs": { "url": "https://github.com/thgreasi/babel-plugin-system-import-transformer/issues" }, "homepage": "https://github.com/thgreasi/babel-plugin-system-import-transformer", "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", "@babel/plugin-transform-runtime": "^7.0.0", "@babel/preset-env": "^7.0.0", "@babel/register": "^7.0.0", "babel-eslint": "^10.0.1", "chalk": "^1.1.3", "clear": "0.0.1", "diff": "^2.2.3", "eslint": "^5.13.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.16.0", "eslint-plugin-node": "^8.0.1", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "husky": "^1.3.1", "lint-staged": "^8.1.3", "prettier": "~1.16.4", "rimraf": "^2.6.3", "watch": "^0.18.0" }, "dependencies": { "@babel/core": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-dynamic-import": "^7.0.0" } }