-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 KB
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
{
"name": "@uma/logger",
"version": "1.3.1",
"description": "Logger library",
"dependencies": {
"@google-cloud/logging-winston": "^6.0.0",
"@google-cloud/trace-agent": "^5.1.6",
"@pagerduty/pdjs": "^2.2.4",
"bn.js": "^4.11.9",
"discord.js": "^14.11.0",
"dotenv": "^9.0.0",
"minimist": "^1.2.0",
"node-pagerduty": "^1.2.0",
"redis": "^4.6.13",
"superstruct": "^1.0.3",
"web3": "^1.6.0",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/sinon": "^10.0.0",
"chai": "^4.3.4",
"lodash": "^4.17.20",
"mocha": "^9.1.1",
"sinon": "^9.0.2"
},
"homepage": "https://umaproject.org",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.com/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UMAprotocol/protocol.git"
},
"files": [
"/src/**/*.js",
"/dist/**/*"
],
"scripts": {
"test": "mocha 'test/**/*.js'",
"build": "tsc"
},
"bugs": {
"url": "https://github.com/UMAprotocol/protocol/issues"
}
}