npm-install-loader
Version:
Webpack loader to automatically npm install & save dependencies.
47 lines (46 loc) • 1.44 kB
JSON
{
"name": "npm-install-loader",
"version": "1.1.0",
"description": "Webpack loader to automatically npm install & save dependencies.",
"main": "index.js",
"files": [
"src"
],
"scripts": {
"changelog": "npm run changelog:generate && npm run changelog:add",
"changelog:add": "git add CHANGELOG.md",
"changelog:generate": "github_changelog_generator --future-release $npm_package_version",
"coverage": "npm test && nyc report --reporter=text-lcov | coveralls",
"postversion": "npm run version:amend && git push origin master --tags && npm publish",
"test": "NODE_ENV=test nyc mocha",
"version": "npm run changelog",
"version:amend": "git commit --amend -m \"Release v${npm_package_version}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericclemmons/webpack-npm-install-loader.git"
},
"keywords": [
"webpack",
"webpack-loader",
"npm",
"install"
],
"author": "Eric Clemmons <eric@smarterspam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericclemmons/webpack-npm-install-loader/issues"
},
"homepage": "https://github.com/ericclemmons/webpack-npm-install-loader#readme",
"dependencies": {
"babel-core": "^6.3.26",
"loader-utils": "^0.2.12",
"lodash.kebabcase": "^3.0.1"
},
"devDependencies": {
"coveralls": "^2.11.6",
"expect": "^1.13.4",
"mocha": "^2.3.4",
"nyc": "^5.0.1"
}
}