-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "senselogs",
"version": "1.0.7",
"description": "Simple, dynamic, blazing fast serverless logging",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"keywords": [
"serverless",
"lambda",
"log",
"logs",
"logging",
"observability",
"typescript",
"aws",
"amazon"
],
"author": {
"name": "Michael O'Brien",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sensedeep/senselogs.git"
},
"bugs": {
"url": "http://github.com/sensedeep/senselogs/issues"
},
"homepage": "https://github.com/sensedeep/senselogs",
"license": "MIT",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup",
"_lint": "eslint src",
"prepare": "npm run build",
"_prepublishOnly": "npm test && npm run lint",
"test": "jest",
"test-cov": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.5",
"eslint": "^9.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
},
"files": [
"dist/"
]
}