forked from serverless-heaven/serverless-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.81 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
{
"name": "serverless-webpack",
"version": "5.7.1",
"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": "jest --verbose",
"test-coverage": "jest --coverage",
"eslint": "eslint --ext .js *.js lib tests"
},
"dependencies": {
"archiver": "^5.3.1",
"bluebird": "^3.7.2",
"fs-extra": "^9.1.0",
"glob": "^7.2.3",
"is-builtin-module": "^3.1.0",
"lodash": "^4.17.21",
"semver": "^7.3.7"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@serverless/test": "^11.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"lint-staged": "^10.5.4",
"prettier": "^2.6.2",
"serverless": "^3.19.0",
"sinon": "^14.0.0",
"unzipper": "^0.10.11",
"webpack": "^5.73.0"
},
"peerDependencies": {
"serverless": "1 || 2 || 3",
"webpack": ">= 3.0.0 < 6"
},
"optionalDependencies": {
"ts-node": ">= 8.3.0"
},
"engines": {
"node": ">= 10.12.0"
}
}