This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.22 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
{
"name": "epsagon-frameworks",
"version": "0.0.0-development",
"description": "Epsagon Instrumentation for Node.js Frameworks",
"keywords": [
"serverless",
"epsagon",
"tracing",
"distributed-tracing",
"lambda",
"aws-lambda",
"debugging",
"monitoring",
"express",
"hapi"
],
"author": "Epsagon Team <[email protected]>",
"license": "MIT",
"scripts": {
"test": "",
"lint:js": "eslint --max-warnings=0 ./src/ ./examples/ ./test/unit_tests ./index.js -f table --ext .js --ext .jsx",
"lint": "npm run lint:js",
"build:dev": "rollup -c",
"build": "NODE_ENV=production rollup -c",
"clean": "rm -r dist/",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"bugs": {
"url": "https://github.com/epsagon/epsagon-node-frameworks/issues"
},
"homepage": "https://github.com/epsagon/epsagon-node-frameworks#readme",
"repository": {
"type": "git",
"url": "https://github.com/epsagon/epsagon-node-frameworks.git"
},
"main": "dist/bundle.js",
"files": [
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-angular": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.11.0",
"husky": "^1.1.0",
"lolex": "^3.0.0",
"mocha": "^8.1.1",
"proxyquire": "^2.0.1",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-terser": "^7.0.0",
"semantic-release": "^21.0.1",
"sinon": "^4.3.0",
"uglify-es": "^3.3.9"
},
"dependencies": {
"epsagon": "^1.117.1",
"node-schedule": "^1.3.2",
"os-utils": "0.0.14",
"semver": "^6.3.0",
"shimmer": "^1.2.0",
"uuid4": "^1.0.0"
}
}