-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "@tradle/lambda-plugins",
"version": "3.3.0",
"description": "System to load additional packages based on configuration in lamdba function",
"main": "./cjs/index.js",
"module": "./mjs/index.js",
"bin": "./bin/lambda-plugins",
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.mjs.json && tsc -p tsconfig.cjs.json",
"lint": "ts-standard",
"unit": "c8 --reporter=html ts-node test/*.test.ts",
"test": "npm run lint && npm run unit"
},
"ts-standard": {
"ignore": [
"sls-aws-example"
]
},
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^17.0.16",
"aws-sdk": "^2.1001.0",
"c8": "^7.11.0",
"fresh-tape": "^5.5.3",
"ts-node": "^10.5.0",
"ts-standard": "^11.0.0",
"typescript": "^3.7.7"
},
"dependencies": {
"debug": "^4.3.3",
"p-queue": "^6.6.2"
},
"peerDependencies": {
"aws-sdk": "^2.1001.0"
}
}