-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
{
"name": "ethers-token",
"version": "0.0.2",
"author": "Cyan Ho <[email protected]>",
"description": "A token util based on ethers.js to help developers code in a semantic manner",
"keywords": [
"ethereum",
"ethers",
"token",
"erc20",
"ethers-token"
],
"homepage": "https://github.com/pilagod/ethers-token",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pilagod/ethers-token"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"lint": "eslint --ignore-path .prettierignore \"./**/*.ts\" && prettier --check .",
"test": "mocha 'test/**/*.ts'",
"coverage": "nyc npm run test",
"coverage-html": "nyc --reporter=html npm run test",
"coverage-lcov": "nyc --reporter=lcov npm run test"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.9.9",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"ethers": "^5.0.0"
}
}