Files
serverless-webpack/package.json
T
Frank Schmid f80388cbc8 Update examples added
Update #265

Added #260

Added release notes. Increased version.
2017-10-31 15:20:16 +01:00

71 lines
1.7 KiB
JSON

{
"name": "serverless-webpack",
"version": "4.0.0",
"description": "Serverless plugin to bundle your javascript with Webpack",
"main": "index.js",
"author": "Nicola Peduzzi <nicola.peduzzi@elastic-coders.com> (http://elastic-coders.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-heaven/serverless-webpack.git"
},
"keywords": [
"serverless",
"1.0",
"webpack",
"babel",
"typescript",
"es6",
"plugin",
"runtime"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/serverless-heaven/serverless-webpack/issues"
},
"homepage": "https://github.com/serverless-heaven/serverless-webpack#readme",
"scripts": {
"test": "nyc ./node_modules/mocha/bin/_mocha tests/all -R spec --recursive",
"eslint": "node node_modules/eslint/bin/eslint.js --ext .js lib"
},
"nyc": {
"exclude": [
"tests/**/*.*"
],
"reporter": [
"lcov",
"clover",
"text-summary"
],
"report-dir": "./coverage"
},
"dependencies": {
"archiver": "^2.0.0",
"bluebird": "^3.5.0",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"is-builtin-module": "^1.0.0",
"lodash": "^4.17.4",
"semver": "^5.4.1",
"ts-node": "^3.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"eslint": "^4.7.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-lodash": "^2.4.5",
"eslint-plugin-promise": "^3.5.0",
"mocha": "^3.5.3",
"mockery": "^2.1.0",
"nyc": "^11.2.1",
"serverless": "^1.23.0",
"sinon": "^3.3.0",
"sinon-chai": "^2.13.0"
},
"peerDependencies": {
"webpack": "*"
}
}