forked from 721labs/partial-common-ownership
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.42 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
{
"name": "@721labs/partial-common-ownership",
"version": "0.1.0",
"description": "This project aims to establish a standard, open source implementation of Partial Common Ownership for non-fungible tokens.",
"keywords": [
"harberger tax",
"partial common ownership",
"salsa",
"cost",
"nft",
"nfts"
],
"homepage": "https://github.com/721labs/partial-common-ownership",
"bugs": {
"url": "https://github.com/721labs/partial-common-ownership/issues"
},
"license": "MIT",
"contributors": [
{
"name": "Will Holley",
"email": "will@willholley.com",
"url": "https://721.dev"
}
],
"files": [
"docs",
"contracts/token/*.sol",
"contracts/Wrapper.sol"
],
"repository": "git@github.com:721labs/partial-common-ownership.git",
"scripts": {
"console": "yarn hardhat console",
"compile": "yarn hardhat compile",
"test:hardhat": "yarn typechain && yarn hardhat --network hardhat test",
"test:forge": "forge test -vvv",
"test": "yarn test:hardhat && yarn test:forge",
"prettier": "prettier --write 'contracts/**/*.sol'",
"solhint": "solhint contracts/*.sol contracts/**/*.sol contracts/**/**/*.sol contracts/**/**/**/*.sol",
"publish": "npm publish --access public",
"coverage": "cross-env TYPE_COMPILATION=false yarn hardhat coverage",
"typechain": "yarn hardhat typechain",
"postinstall": "yarn typechain"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/test-helpers": "^0.5.13",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.2.21",
"@types/js-yaml": "^4.0.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat": "^2.12.2",
"hardhat-gas-reporter": "^1.0.6",
"hardhat-preprocessor": "^0.1.5",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.0-beta.1",
"ts-node": "^10.2.1",
"typechain": "^8.0.0",
"typescript": "^4.4.2",
"web3": "^1.5.2"
},
"dependencies": {},
"resolutions": {
"colors": "1.4.0"
},
"private": false
}