forked from serverless-heaven/serverless-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.24 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
87
88
89
90
91
{
"name": "serverless-webpack",
"version": "5.6.0",
"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": {
"bestzip": "^2.2.0",
"bluebird": "^3.7.2",
"fs-extra": "^9.1.0",
"glob": "^7.2.0",
"is-builtin-module": "^3.1.0",
"lodash": "^4.17.21",
"semver": "^7.3.5"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-lodash": "^7.3.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"mocha": "^8.4.0",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"prettier-eslint-cli": "^5.0.1",
"serverless": "^2.69.1",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0"
},
"peerDependencies": {
"serverless": "1 || 2 || 3",
"webpack": ">= 3.0.0 < 6"
},
"optionalDependencies": {
"ts-node": ">= 8.3.0"
},
"engines": {
"node": ">= 10.12.0"
}
}