This repository was archived by the owner on Sep 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.59 KB
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
{
"name": "serverless-plugin-include-dependencies",
"version": "5.1.0",
"engines": {
"node": ">=4.0"
},
"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": "^3.0.0",
"eslint": "^7.30.0",
"lodash": "^4.17.11",
"nyc": "^15.0.0",
"sinon": "^11.1.1",
"updater-contributors": "^0.1.2"
},
"dependencies": {
"micromatch": "^4.0.2",
"precinct": "^8.1.0",
"read-pkg-up": "^7.0.1",
"require-package-name": "^2.0.1",
"resolve": "^1.15.0",
"semver": "^7.1.1"
},
"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)"
]
}