This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
forked from serverless-heaven/serverless-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "serverless-webpack",
"version": "5.3.5",
"description": "Serverless plugin to bundle your javascript with Webpack",
"main": "index.js",
"types": "index.d.ts",
"author": "Frank Schmid <[email protected]>",
"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": "mocha tests/all index.test.js \"lib/**/*.test.js\" -R spec --recursive",
"test-coverage": "nyc ./node_modules/mocha/bin/_mocha tests/all index.test.js \"lib/**/*.test.js\" -R spec --recursive",
"eslint": "eslint --ext .js *.js lib tests",
"format": "prettier-eslint \"$(pwd)/**/*.js\" --write"
},
"nyc": {
"all": true,
"exclude": [
"tests/**/*.*",
"**/*.test.js",
"coverage/**",
"examples/**"
],
"reporter": [
"lcov",
"clover",
"text-summary"
],
"report-dir": "./coverage"
},
"dependencies": {
"archiver": "^5.0.2",
"bluebird": "^3.7.2",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"is-builtin-module": "^3.0.0",
"lodash": "^4.17.20",
"semver": "^7.3.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"mocha": "^8.1.3",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"prettier-eslint-cli": "^5.0.0",
"serverless": "^1.83.0",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0"
},
"peerDependencies": {
"webpack": ">= 3.0.0 < 6"
},
"optionalDependencies": {
"ts-node": ">= 8.3.0"
}
}