-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.29 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": "erc-token-js",
"version": "0.1.4",
"license": "MIT",
"repository": "clbrge/erc-token-js",
"description": "A versatile JavaScript library for handling ERC20 tokens serialization and display, extending the capabilities of Ethers.js.",
"author": {
"name": "Christophe Le Bars",
"email": "<[email protected]>"
},
"engines": {
"node": ">=14.0.0"
},
"type": "module",
"scripts": {
"test": "mocha --timeout 1000 --async-stack-traces",
"prepare": "husky install"
},
"main": "src/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./src/index.js",
"main": "./src/index.js"
}
},
"prettier": "prettier-config-standard",
"dependencies": {
"ethers": "^6.3.0"
},
"release-it": {
"github": {
"release": true
}
},
"files": [
"src"
],
"keywords": [
"ethereum",
"ethers",
"ethersjs",
"erc20",
"token"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"prettier-config-standard": "^5.0.0",
"release-it": "^15.10.1"
},
"lint-staged": {
"*.{js,json,md}": "prettier --write"
}
}