-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "lambda-logger-node",
"version": "4.0.0-7",
"description": "A logger middleware for AWS Lambda functions",
"main": "lib/main.js",
"typings": "lib/types/main.d.ts",
"author": "Tim Kye",
"license": "Apache-2.0",
"scripts": {
"test": "run-s check test:unit",
"test:unit": "jest",
"test:watch": "jest --watch",
"build": "run-s check build:tsc",
"build:tsc": "del lib/ && tsc ",
"style": "prettier --write \"{src,test}/**/*.ts\"",
"size": "run-s build size:check",
"size:check": "size-limit",
"lint": "eslint \"{src,test}/**/*.ts\"",
"check": "npm run style && npm run lint",
"release": "npm run build && np"
},
"files": [
"lib"
],
"engines": {
"node": ">=12.10"
},
"repository": "ssh:/git@github.com:Nike-Inc/lambda-logger-node.git",
"keywords": [
"lambda",
"logger"
],
"dependencies": {
"fast-safe-stringify": "^2.0.6"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.7.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"del-cli": "^4.0.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"np": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"size-limit": "^4.7.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"size-limit": [
{
"webpack": false,
"path": "lib/*.js",
"limit": "6kb"
}
]
}