-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 934 Bytes
/
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
{
"name": "@defi.org/web3-candies",
"version": "5.0.4",
"description": "Common utilities for web3",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-org-code/web3-candies.git"
},
"bugs": {
"url": "https://github.com/defi-org-code/web3-candies/issues"
},
"homepage": "https://github.com/defi-org-code/web3-candies#readme",
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"bignumber.js": "9.x",
"web3": "1.x"
},
"devDependencies": {
"typescript": "4.x",
"jest": "29.x",
"ts-jest": "29.x",
"@types/jest": "29.x"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.ts"
]
}
}