-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
80 lines (80 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bep20-generator",
"version": "1.0.0",
"description": "The new Smart Contract Generator for BEP20 Token.",
"files": [
"contracts",
"test"
],
"scripts": {
"dev": "lite-server",
"truffle:console": "truffle develop",
"truffle:compile": "scripts/compile.sh",
"truffle:test": "npm run truffle:compile && scripts/test.sh",
"hardhat:console": "hardhat console",
"hardhat:compile": "hardhat compile",
"hardhat:test": "hardhat test",
"hardhat:coverage": "hardhat coverage --network coverage",
"test": "npm run hardhat:test",
"coverage": "scripts/coverage.sh",
"clean": "rm -rf coverage",
"profile": "npm run clean && npm run coverage && open coverage/index.html",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"flat": "scripts/flat.sh",
"analyze": "scripts/analyze.sh"
},
"keywords": [
"solidity",
"bsc",
"smart",
"contracts",
"token",
"bep20"
],
"repository": {
"type": "git",
"url": "https://github.com/vittominacori/bep20-generator.git"
},
"homepage": "https://vittominacori.github.io/bep20-generator",
"bugs": {
"url": "https://github.com/vittominacori/bep20-generator/issues"
},
"author": "Vittorio Minacori",
"contributors": [
{
"name": "Vittorio Minacori",
"url": "https://github.com/vittominacori"
}
],
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.9",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"ganache-cli": "^6.12.1",
"hardhat": "^2.0.6",
"lite-server": "^2.6.1",
"sol2uml": "^1.1.21",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.13",
"surya": "^0.4.1",
"truffle": "5.1.49",
"truffle-flattener": "^1.5.0"
},
"dependencies": {
"@openzeppelin/contracts": "3.3.0-solc-0.7"
}
}