Files

78 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2016-08-16 20:28:57 +02:00
{
"name": "serverless-webpack",
2018-07-07 16:01:20 +02:00
"version": "5.2.0",
2016-08-16 20:28:57 +02:00
"description": "Serverless plugin to bundle your javascript with Webpack",
"main": "index.js",
2018-03-08 12:53:40 +01:00
"author": "Frank Schmid <fschmid740@googlemail.com>",
2016-08-16 20:28:57 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-heaven/serverless-webpack.git"
2016-08-16 20:28:57 +02:00
},
"keywords": [
"serverless",
"1.0",
"webpack",
"babel",
2016-08-20 17:49:52 +02:00
"typescript",
"es6",
2016-08-16 20:28:57 +02:00
"plugin",
2018-04-28 12:19:38 +02:00
"runtime",
2018-07-07 16:01:20 +02:00
"elm",
"npm",
"yarn"
2016-08-16 20:28:57 +02:00
],
"license": "MIT",
"bugs": {
"url": "https://github.com/serverless-heaven/serverless-webpack/issues"
2016-08-16 20:28:57 +02:00
},
"homepage": "https://github.com/serverless-heaven/serverless-webpack#readme",
2016-08-18 18:24:00 +02:00
"scripts": {
2018-03-07 16:15:56 +01:00
"test": "nyc ./node_modules/mocha/bin/_mocha tests/all index.test.js \"lib/**/*.test.js\" -R spec --recursive",
2017-09-10 01:31:04 +02:00
"eslint": "node node_modules/eslint/bin/eslint.js --ext .js lib"
2016-08-18 18:24:00 +02:00
},
2017-09-23 12:31:10 +02:00
"nyc": {
"all": true,
2017-09-23 12:31:10 +02:00
"exclude": [
2018-02-28 18:49:19 +01:00
"tests/**/*.*",
"**/*.test.js",
"coverage/**",
"examples/**"
2017-09-23 12:31:10 +02:00
],
"reporter": [
"lcov",
"clover",
"text-summary"
],
"report-dir": "./coverage"
},
2016-08-16 20:28:57 +02:00
"dependencies": {
2018-03-06 12:15:44 +01:00
"archiver": "^2.1.1",
"bluebird": "^3.5.1",
"fs-extra": "^4.0.3",
"glob": "^7.1.2",
"is-builtin-module": "^1.0.0",
2018-04-28 12:19:38 +02:00
"lodash": "^4.17.10",
2018-03-06 12:15:44 +01:00
"semver": "^5.5.0",
"ts-node": "^3.2.0"
2016-08-18 18:24:00 +02:00
},
"devDependencies": {
2018-07-07 16:12:24 +02:00
"babel-eslint": "^8.2.5",
2017-09-23 12:31:10 +02:00
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
2018-07-07 16:12:24 +02:00
"coveralls": "^3.0.2",
"eslint": "^5.0.1",
"eslint-plugin-import": "^2.13.0",
2018-04-28 12:19:38 +02:00
"eslint-plugin-lodash": "^2.7.0",
2018-07-07 16:12:24 +02:00
"eslint-plugin-promise": "^3.8.0",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
2018-07-07 16:12:24 +02:00
"nyc": "^12.0.2",
"serverless": "^1.26.1",
2018-07-07 16:12:24 +02:00
"sinon": "^6.1.3",
"sinon-chai": "^3.2.0"
},
"peerDependencies": {
2018-02-28 23:24:37 +01:00
"webpack": ">= 3.0.0 < 5"
2016-08-16 20:28:57 +02:00
}
}