-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
{
"name": "@ndujalabs/erc721lockable",
"version": "0.13.0",
"description": "A simple approach to lock NFT in place w/out losing ownership",
"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",
"clean": "rimraf artifacts cache coverage coverage.json",
"coverage": "rimraf coverage coverage.json && NODE_ENV=test npx hardhat coverage",
"prepublishOnly": "npm run compile && npm test",
"publish-package": "scripts/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndujaLabs/erc721lockable.git"
},
"author": {
"name": "Francesco Sullo",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ndujaLabs/erc721lockable/issues"
},
"homepage": "https://github.com/ndujaLabs/erc721lockable#readme",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@openzeppelin/hardhat-upgrades": "^1.25.3",
"chai": "^4.3.7",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"pretty-quick": "^3.1.3",
"require-or-mock": "^0.2.1",
"rimraf": "^5.0.1",
"solhint": "^3.4.1",
"solidity-coverage": "^0.7.22",
"soliutils": "^0.0.4",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.js": "prettier --write"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3"
}
}