-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (56 loc) · 1.64 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
{
"name": "@ndujalabs/erc721attributable",
"version": "0.2.0",
"description": "A proposal for on-chain attributes for NFT and other assets",
"publishConfig": {
"access": "public"
},
"files": [
"/contracts/**/*.sol"
],
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"lint": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol'",
"format": "npx prettier --write ./test/fixtures/**/*.js ./**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndujaLabs/erc721attributable.git"
},
"author": {
"name": "Francesco Sullo",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ndujaLabs/erc721attributable/issues"
},
"homepage": "https://github.com/ndujaLabs/erc721attributable#readme",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.7.1",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.7.1",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-gas-reporter": "^1.0.6",
"husky": "^8.0.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"pretty-quick": "^3.1.3",
"require-or-mock": "^0.2.1",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.21",
"soliutils": "^0.0.4",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.js": "prettier --write"
}
}