-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 887 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
{
"name": "caver-multicall",
"version": "1.0.3",
"description": "Multicall library for caver-js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node lib/index.js",
"test": "npx mocha test/**/*.ts -r ts-node/register"
},
"keywords": [
"caver-js",
"multicall",
"klaytn"
],
"author": "swimmie <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dannylisa/caver-multicall",
"repository": {
"type": "git",
"url": "git+https://github.com/dannylisa/caver-multicall"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"caver-js": "^1.8.1",
"ts-node": "^10.7.0"
}
}