-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.31 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
{
"name": "@logicmonitor/lm-telemetry-sdk",
"version": "0.0.2",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/logicmonitor/lm-telemetry-sdk-nodejs.git"
},
"scripts": {
"test": "jest",
"compile": "tsc",
"prebuild": "node .scripts/cleanse-pkg \"prepare,prebuild,postbuild\"",
"build": "tsc --build --force",
"postbuild": "node .scripts/restore-pkg && cp ./README.md ./build/",
"lint": "pretty-quick --staged && lint-staged",
"pretty-quick": "pretty-quick",
"prepare": "husky install",
"lint-check": "pretty-quick --check",
"prerelease": "npm run lint-check && npm run test && npm run build",
"release": "standard-version --sign",
"dry-release": "npm run release -- --dry-run",
"prepack": "node .scripts/cleanse-pkg \"prepare,prebuild,postbuild\"",
"postpack": "node .scripts/restore-pkg && cp ./README.md ./build/"
},
"keywords": [],
"author": "",
"license": "MPL-2.0",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.57.1",
"codecov": "^3.8.3",
"eslint": "^8.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"license-checker": "^25.0.1",
"lint-staged": "^12.1.7",
"nock": "^13.2.2",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"standard-version": "^9.5.0",
"ts-jest": "^27.0.7",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.27.0",
"@aws-sdk/client-sts": "^3.51.0",
"@opentelemetry/api": "^1.0.4",
"@opentelemetry/resource-detector-aws": "^1.0.3",
"@opentelemetry/resource-detector-gcp": "^0.29.0",
"@opentelemetry/resources": "^1.10.1",
"@types/node": "^16.18.38",
"gcp-metadata": "^5.2.0"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm lint"
}
},
"files": [
"build/src/**/*.js",
"build/src/**/*.js.map",
"build/src/**/*.d.ts",
"LICENSE",
"README.md"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}