forked from lumigo-io/lumigo-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.77 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
80
81
82
83
84
85
86
{
"name": "@lumigo/tracer",
"version": "1.81.2",
"description": "Lumigo Tracer for Node.js v8.x / v10.x / v12.x Runtimes",
"main": "dist/index.js",
"repository": "[email protected]:lumigo-io/lumigo-node.git",
"private": false,
"author": "Lumigo LTD (https://lumigo.io)",
"contributors": [
"Sagi Kedmi (https://sagi.io)"
],
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf dist && tsc --build --force",
"check-types": "tsc --noEmit",
"jest": "jest",
"jest-detectOpenHandles": "jest --detectOpenHandles",
"jest-traces": "node --trace-deprecation --trace-warnings node_modules/.bin/jest",
"lint": "eslint ./src",
"prepublishOnly": "npm run lint && npm run prettier:fix && npm run test",
"prettier:ci": "prettier --list-different \"src/**/*.[jt]s\" --parser typescript",
"prettier:fix": "prettier --write \"./src/**/*.[jt]s\" --parser typescript",
"semantic-release": "semantic-release",
"test": "npm run build && npm run jest"
},
"dependencies": {
"@lumigo/node-core": "^1.13.0",
"agentkeepalive": "^4.1.4",
"axios": "0.24.0",
"shimmer": "1.2.1",
"utf8": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^7.2.3",
"@types/aws-lambda": "^8.10.96",
"@types/jest": "^29.2.0",
"@types/utf8": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"aws-sdk": "^2.927.0",
"axios-mock-adapter": "^1.19.0",
"caniuse-lite": "^1.0.30001412",
"codecov": "^3.8.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^8.1.0",
"husky": "^2.4.1",
"jest": "^29.2.1",
"jest-each": "^29.2.1",
"jest-junit": "^14.0.1",
"mockdate": "^2.0.5",
"mongo-mock": "^4.2.0",
"prettier": "2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.3.2"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}