-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
76 lines (76 loc) · 2.74 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
{
"name": "erc-payable-token",
"version": "6.3.0",
"description": "ERC-1363 Payable Token Implementation",
"files": [
"contracts",
"test"
],
"scripts": {
"console": "hardhat console",
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"clean": "hardhat clean && rimraf coverage coverage.json",
"profile": "npm run clean && npm run coverage && open coverage/index.html",
"check:inheritance": "scripts/checks/inheritance-ordering.js artifacts/build-info/*",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,mjs,ts}' --check && eslint --ignore-path .gitignore .",
"lint:js:fix": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,mjs,ts}' --write && eslint --ignore-path .gitignore . --fix",
"lint:sol": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --check && solhint '{contracts,test}/**/*.sol'",
"lint:sol:fix": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --write",
"flat": "scripts/flat.sh",
"analyze": "scripts/analyze.sh",
"docs": "hardhat docgen",
"pages:dev": "vitepress dev pages",
"pages:build": "vitepress build pages",
"pages:deploy": "vitepress build pages && sh pages/deploy/deploy.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/vittominacori/erc1363-payable-token.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"token",
"erc1363"
],
"author": "Vittorio Minacori (https://github.com/vittominacori)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vittominacori/erc1363-payable-token/issues"
},
"homepage": "https://vittominacori.github.io/erc1363-payable-token",
"dependencies": {
"@openzeppelin/contracts": "5.1.0"
},
"devDependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.16",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-mocha-no-only": "^1.2.0",
"graphlib": "^2.1.8",
"hardhat": "^2.22.13",
"hardhat-exposed": "^0.3.15",
"hardhat-gas-reporter": "^2.2.1",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"rimraf": "^6.0.1",
"sol2uml": "^2.5.20",
"solhint": "^5.0.3",
"solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
"solidity-coverage": "^0.8.13",
"solidity-docgen": "^0.6.0-beta.36",
"surya": "^0.4.12",
"vitepress": "^1.4.1",
"yargs": "^17.7.2"
}
}