You've already forked serverless-webpack
mirror of
https://github.com/encounter/serverless-webpack.git
synced 2026-03-30 11:37:58 -07:00
78 lines
1.8 KiB
JSON
78 lines
1.8 KiB
JSON
{
|
|
"name": "serverless-webpack",
|
|
"version": "5.2.0",
|
|
"description": "Serverless plugin to bundle your javascript with Webpack",
|
|
"main": "index.js",
|
|
"author": "Frank Schmid <fschmid740@googlemail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/serverless-heaven/serverless-webpack.git"
|
|
},
|
|
"keywords": [
|
|
"serverless",
|
|
"1.0",
|
|
"webpack",
|
|
"babel",
|
|
"typescript",
|
|
"es6",
|
|
"plugin",
|
|
"runtime",
|
|
"elm",
|
|
"npm",
|
|
"yarn"
|
|
],
|
|
"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 index.test.js \"lib/**/*.test.js\" -R spec --recursive",
|
|
"eslint": "node node_modules/eslint/bin/eslint.js --ext .js lib"
|
|
},
|
|
"nyc": {
|
|
"all": true,
|
|
"exclude": [
|
|
"tests/**/*.*",
|
|
"**/*.test.js",
|
|
"coverage/**",
|
|
"examples/**"
|
|
],
|
|
"reporter": [
|
|
"lcov",
|
|
"clover",
|
|
"text-summary"
|
|
],
|
|
"report-dir": "./coverage"
|
|
},
|
|
"dependencies": {
|
|
"archiver": "^2.1.1",
|
|
"bluebird": "^3.5.1",
|
|
"fs-extra": "^4.0.3",
|
|
"glob": "^7.1.2",
|
|
"is-builtin-module": "^1.0.0",
|
|
"lodash": "^4.17.10",
|
|
"semver": "^5.5.0",
|
|
"ts-node": "^3.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^8.2.5",
|
|
"chai": "^4.1.2",
|
|
"chai-as-promised": "^7.1.1",
|
|
"coveralls": "^3.0.2",
|
|
"eslint": "^5.0.1",
|
|
"eslint-plugin-import": "^2.13.0",
|
|
"eslint-plugin-lodash": "^2.7.0",
|
|
"eslint-plugin-promise": "^3.8.0",
|
|
"mocha": "^5.2.0",
|
|
"mockery": "^2.1.0",
|
|
"nyc": "^12.0.2",
|
|
"serverless": "^1.28.0",
|
|
"sinon": "^6.1.3",
|
|
"sinon-chai": "^3.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"webpack": ">= 3.0.0 < 5"
|
|
}
|
|
}
|