-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "dodo-bridge-aggregator",
"version": "1.0.7",
"description": "dodo 桥聚合器",
"author": "dq",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"release": "npm run build && npm publish",
"test": "jest --runInBand --forceExit --colors test/butter.spec.ts",
"test:cov": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.3.4",
"bignumber.js": "^9.1.1",
"ethers": "^5.5.2",
"lodash": "^4.17.21"
},
"keywords": [
"dodo",
"dodo-bridge",
"dodo-bridge-aggregator"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DODOEX/dodo-bridge-aggregator"
},
"bugs": {
"url": "https://github.com/DODOEX/dodo-bridge-aggregator/issues"
},
"homepage": "https://github.com/DODOEX/dodo-bridge-aggregator#readme",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}