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 19
/
package.json
117 lines (117 loc) · 3.35 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "epsagon",
"version": "0.0.0-development",
"description": "Epsagon Instrumentation for Node.js",
"keywords": [
"serverless",
"epsagon",
"tracing",
"distributed-tracing",
"lambda",
"aws-lambda",
"debugging",
"monitoring"
],
"author": "Epsagon Team <[email protected]>",
"license": "MIT",
"scripts": {
"pretest": "./scripts/build_peg.sh",
"test": "nyc --reporter=text --reporter=text-summary ./scripts/run_tests.sh",
"lint:js": "eslint --max-warnings=0 ./src/ ./examples/ ./test/unit_tests ./index.js -f table --ext .js --ext .jsx",
"lint:js:fix": "eslint --max-warnings=0 ./src/ ./examples/ ./test/unit_tests ./index.js -f table --ext .js --ext .jsx --fix",
"lint": "npm run lint:js",
"build:dev": "./scripts/build_peg.sh && rollup -c",
"build": "./scripts/build_peg.sh && 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/issues"
},
"homepage": "https://github.com/epsagon/epsagon-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/epsagon/epsagon-node.git"
},
"main": "dist/bundle.js",
"files": [
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"check-coverage": true,
"statements": 17,
"branches": 13,
"functions": 25,
"lines": 17
},
"devDependencies": {
"@babel/runtime": "^7.4.5",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-angular": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"aws-sdk": "^2.197.0",
"body-parser": "^1.19.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"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",
"express": "^4.17.1",
"express-session": "^1.17.1",
"husky": "^1.1.0",
"ldap-server-mock": "^3.0.0",
"ldapjs": "^2.1.0",
"lolex": "^3.0.0",
"memcached": "^2.2.2",
"mocha": "^9.1.2",
"mongodb": "^3.1.13",
"mysql": "^2.16.0",
"mysql2": "^1.6.4",
"nyc": "^15.1.0",
"pegjs": "^0.10.0",
"pg": "^7.6.0",
"pg-pool": "^2.0.3",
"proxyquire": "^2.0.1",
"randomstring": "^1.1.5",
"redis": "^3.1.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.7",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-terser": "^7.0.1",
"semantic-release": "^18.0.0",
"semver": "^7.3.4",
"simple-oauth2": "^4.2.0",
"sinon": "^4.3.0",
"uglify-es": "^3.3.9",
"underscore": "^1.12.0"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.41.0",
"@aws-sdk/util-dynamodb": "^3.49.0",
"axios-minified": "^1.0.7",
"google-protobuf-minified": "^1.0.8",
"json-stringify-safe": "^5.0.1",
"md5": "^2.2.1",
"require-in-the-middle": "^5.0.3",
"shimmer": "^1.2.1",
"sort-json": "^2.0.0",
"uuid-parse": "^1.1.0",
"uuid4": "^1.0.0"
}
}