mirror of
https://github.com/developit/microbundle.git
synced 2026-01-18 13:56:35 +00:00
96 lines
2.8 KiB
JSON
96 lines
2.8 KiB
JSON
{
|
|
"name": "microbundle",
|
|
"version": "0.7.0",
|
|
"description": "Zero-configuration bundler for tiny JS libs, powered by Rollup.",
|
|
"main": "dist/microbundle.js",
|
|
"source": "src/index.js",
|
|
"bin": "dist/cli.js",
|
|
"scripts": {
|
|
"build": "npm run -s build:babel && npm run -s build:self",
|
|
"build:babel": "babel-node src/cli.js --target=node --format cjs src/{cli,index}.js",
|
|
"build:self": "node dist/cli.js --target=node --format cjs src/{cli,index}.js",
|
|
"prepare": "npm run -s build",
|
|
"prepare:babel": "babel src/*.js -d dist && npm t",
|
|
"lint": "eslint src",
|
|
"test": "npm run -s lint && npm run -s build && jest",
|
|
"release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
|
|
},
|
|
"repository": "developit/microbundle",
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"useTabs": true
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"testURL": "http://localhost"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"bundle",
|
|
"rollup",
|
|
"micro library"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"author": "Jason Miller <jason@developit.ca> (http://jasonformat.com)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/core": "^7.1.6",
|
|
"@babel/plugin-syntax-jsx": "^7.0.0",
|
|
"@babel/polyfill": "^7.0.0",
|
|
"asyncro": "^3.0.0",
|
|
"autoprefixer": "^9.0.0",
|
|
"babel-plugin-transform-async-to-promises": "^0.8.1",
|
|
"brotli-size": "^0.0.3",
|
|
"camelcase": "^5.0.0",
|
|
"chalk": "^2.4.0",
|
|
"cssnano": "^4.1.7",
|
|
"es6-promisify": "^6.0.1",
|
|
"gzip-size": "^5.0.0",
|
|
"pretty-bytes": "^5.1.0",
|
|
"rollup": "^0.67.3",
|
|
"rollup-plugin-babel": "^4.1.0-0",
|
|
"rollup-plugin-buble": "^0.19.4",
|
|
"rollup-plugin-bundle-size": "^1.0.1",
|
|
"rollup-plugin-commonjs": "^9.0.0",
|
|
"rollup-plugin-es3": "^1.1.0",
|
|
"rollup-plugin-flow": "^1.1.1",
|
|
"rollup-plugin-node-resolve": "^3.3.0",
|
|
"rollup-plugin-postcss": "^1.6.1",
|
|
"rollup-plugin-preserve-shebang": "^0.1.6",
|
|
"rollup-plugin-sizes": "^0.4.2",
|
|
"rollup-plugin-strict-alias": "^1.0.0",
|
|
"rollup-plugin-terser": "^3.0.0",
|
|
"rollup-plugin-typescript2": "^0.18.0",
|
|
"sade": "^1.4.0",
|
|
"tiny-glob": "^0.2.0",
|
|
"tslib": "^1.9.0",
|
|
"typescript": ">=2.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.1.5",
|
|
"@babel/node": "^7.0.0",
|
|
"@babel/preset-env": "^7.1.6",
|
|
"directory-tree": "^2.1.0",
|
|
"eslint": "^5.0.0",
|
|
"eslint-config-developit": "^1.1.1",
|
|
"eslint-config-prettier": "^3.0.0",
|
|
"eslint-plugin-prettier": "^3.0.0",
|
|
"fs-extra": "^7.0.0",
|
|
"husky": "^1.1.2",
|
|
"jest": "^23.6.0",
|
|
"lint-staged": "^8.0.0",
|
|
"prettier": "^1.13.0",
|
|
"rimraf": "^2.6.2",
|
|
"shell-quote": "^1.6.1",
|
|
"strip-ansi": "^5.0.0"
|
|
}
|
|
}
|