-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "serverless-plugin-include-dependencies",
"version": "6.1.0",
"engines": {
"node": ">=18.18"
},
"description": "A Serverless plugin that reduces your packaged function size",
"author": "Doug Moscrop <doug.moscrop@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dougmoscrop/serverless-plugin-include-dependencies"
},
"keywords": [
"serverless",
"serverless plugins"
],
"main": "include-dependencies.js",
"scripts": {
"test": "NODE_PATH=\"__tests__/fixtures/additional_node_path:${NODE_PATH:-}\" nyc --all ava",
"posttest": "eslint ."
},
"devDependencies": {
"ava": "^6.0.1",
"eslint": "^8.56.0",
"lodash": "^4.17.21",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"updater-contributors": "^0.1.2",
"proxyquire": "2.1.3"
},
"dependencies": {
"glob": "^10.3.10",
"micromatch": "^4.0.5",
"precinct": "^11.0.5",
"read-pkg-up": "^7.0.1",
"require-package-name": "^2.0.1",
"resolve": "^1.22.8",
"semver": "^7.5.4"
},
"ava": {
"files": [
"__tests__/*.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"__tests__",
"coverage"
]
},
"contributors": [
"Doug Moscrop (https://twitter.com/dougmoscrop)",
"(https://github.com/apps/dependabot)",
"Joscha Feth (http://www.feth.com)",
"DIALLO Mamadou Bobo (https://github.com/ecstasy2)",
"Rick (https://github.com/RickvdP)",
"Russell Schick (https://github.com/rschick)",
"Saverio Valerio (https://github.com/sav-valerio)",
"Tommy Brunn (http://tommybrunn.com)"
]
}