-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.97 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@jcoreio/pack-lambda",
"version": "0.0.0-development",
"description": "Great .zip packager and S3 uploader for AWS Lambda",
"sideEffects": false,
"bin": {
"pack-lambda": "./dist/bin/index.js"
},
"scripts": {
"prepack": "tc build && ln -sf ../node_modules dist/node_modules",
"start": "babel-node --extensions .ts src/bin/index.ts",
"debug": "babel-node --inspect-brk --extensions .ts src/bin/index.ts",
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/pack-lambda.git"
},
"keywords": [
"npm",
"pack",
"zip",
"aws",
"lambda"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/pack-lambda/issues"
},
"homepage": "https://github.com/jcoreio/pack-lambda#readme",
"devDependencies": {
"@babel/node": "^7.16.0",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "^4.3.5",
"@jcoreio/toolchain-circle": "^4.3.5",
"@jcoreio/toolchain-esnext": "^4.3.5",
"@jcoreio/toolchain-mocha": "^4.3.5",
"@jcoreio/toolchain-semantic-release": "^4.3.5",
"@jcoreio/toolchain-typescript": "^4.3.5",
"@types/archiver": "^5.1.1",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.1",
"@types/node": "^18.0.0",
"@types/npm-package-arg": "^6.1.1",
"@types/npm-packlist": "^1.1.2",
"@types/pacote": "^11.1.1",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@typescript-eslint/typescript-estree": "^4.32.0",
"chai": "^4.3.7",
"copy": "^0.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"mocha": "^10.2.0",
"node-stream-zip": "^1.15.0",
"rimraf": "^3.0.2",
"typescript": "^5.1.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.588.0",
"@aws-sdk/lib-storage": "^3.588.0",
"@babel/runtime": "^7.18.6",
"@npmcli/run-script": "^2.0.0",
"archiver": "^5.3.0",
"chalk": "^4.0.0",
"fs-extra": "^10.0.0",
"npm-package-arg": "^8.1.5",
"npm-packlist": "^3.0.0",
"p-event": "^4.0.0",
"pacote": "^12.0.2",
"yargs": "^17.3.0"
},
"@jcoreio/pack-lambda": {
"excludeDependencies": [
"@aws-sdk/client-s3"
]
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.11.0"
}