forked from jmrossy/celo-ethers-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "@celo-tools/celo-ethers-wrapper",
"version": "0.3.0",
"description": "A minimal wrapper to make Ethers.JS compatible with the Celo network.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/celo-tools/celo-ethers-wrapper",
"license": "MIT",
"author": "J M Rossy",
"keywords": [
"Celo",
"Ethers"
],
"scripts": {
"clean": "rm -rf build",
"build": "yarn build:main && yarn build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test:contract": "ts-node test/useContract.ts",
"test:deploy": "ts-node test/deployContract.ts"
},
"engines": {
"node": ">=10"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^16.11.10",
"ethers": "^5.6.8",
"ts-node": "^10.8.1",
"typescript": "^4.5.2"
},
"peerDependencies": {
"ethers": "^5"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"LICENSE",
"README.md"
]
}