-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "erc20-contract-js",
"version": "1.3.2",
"description": "Simple JS library used to manipulate with ERC-20 token contracts",
"keywords": [
"erc20",
"contract",
"abi",
"javascript",
"web3",
"ethereum",
"eth",
"token",
"contract"
],
"main": "index.js",
"unpkg": "dist/erc20-contract-js.min.js",
"files": [
"/src",
"/dist"
],
"repository": "https://github.com/OsoianMarcel/erc20-contract-js.git",
"homepage": "https://github.com/OsoianMarcel/erc20-contract-js",
"bugs": {
"url": "https://github.com/OsoianMarcel/erc20-contract-js/issues"
},
"author": "Osoian Marcel <[email protected]>",
"license": "MIT",
"peerDependency": {
"web3": "^1.0.0-beta.30"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"chai": "^4.3.5",
"chai-as-promised": "^7.1.1",
"eslint": "^8.7.0",
"eslint-plugin-mocha": "^10.0.3",
"mocha": "^9.2.0",
"web3": "^1.7.0",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"test": "mocha",
"build": "webpack",
"lint": "eslint ./src"
}
}