-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "cloudwatch-embedded-metrics",
"version": "1.0.3",
"description": "CloudWatch embedded metric format (EMF) formatting utils",
"keywords": [
"aws",
"cloudwatch",
"embedded metric format",
"emf",
"metric"
],
"homepage": "https://github.com/ijxy/cloudwatch-embedded-metrics",
"bugs": {
"url": "https://github.com/ijxy/cloudwatch-embedded-metrics/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ijxy/cloudwatch-embedded-metrics.git"
},
"license": "MIT",
"author": {
"name": "ijxy",
"url": "https://github.com/ijxy"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint . --ext ts,js,json --fix",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"test": "NODE_ENV=test node --import tsx --test **/*.test.ts"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^18",
"ajv": "^8.12.0",
"eslint": "^8",
"eslint-config-tip": "^1",
"tsx": "^4",
"typescript": "^5"
},
"engines": {
"node": ">=18"
}
}