-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.25 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
{
"name": "@windingtree/org.id",
"version": "3.1.1",
"description": "ORGiD is Decentralized Identifier (DID) Protocol for Organizations",
"license": "GPL-3.0-only",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "npx hardhat test",
"test:gas": "REPORT_GAS=true npx hardhat test",
"test:opt": "npx hardhat --network optimismLocalhost test",
"lint": "npx solhint contracts/*.sol",
"size": "npx hardhat size-contracts",
"compile": "npx hardhat compile",
"build": "rm -rf dist && yarn compile && tsc -p tsconfig-build.json",
"coverage": "npx hardhat coverage --testfiles \"test/**/*.spec.ts\"",
"coverage:coveralls": "yarn coverage && cat coverage/lcov.info | npx coveralls",
"node:opt": "docker-compose -f optimism/ops/docker-compose-nobuild.yml up -t 60"
},
"repository": {
"type": "git",
"url": "https://github.com/windingtree/org.id"
},
"keywords": [
"orgid",
"winding tree",
"smart contract",
"solidity",
"typescript"
],
"author": "Winding Tree Developers <[email protected]>",
"contributors": [
"Kostiantyn Smyrnov <[email protected]>"
],
"bugs": {
"url": "https://github.com/windingtree/org.id/issues"
},
"homepage": "https://github.com/windingtree/org.id/tree/master#readme",
"dependencies": {
"@openzeppelin/contracts-upgradeable": "4.7.3"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/mocha": "10.0.1",
"@types/chai": "4.3.4",
"ethereum-waffle": "3.4.4",
"@nomiclabs/hardhat-ethers": "2.2.1",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@nomiclabs/hardhat-etherscan": "3.1.4",
"@eth-optimism/hardhat-ovm": "0.2.4",
"@openzeppelin/hardhat-upgrades": "1.22.0",
"hardhat-contract-sizer": "2.6.1",
"hardhat-gas-reporter": "1.0.9",
"ts-node": "10.9.1",
"ethers": "5.7.2",
"solhint": "3.3.7",
"chai": "4.3.7",
"hardhat": "2.12.5",
"typescript": "4.9.4",
"solc": "0.8.17",
"solidity-coverage": "0.8.2",
"coveralls": "3.1.1",
"typechain": "8.1.1",
"@typechain/hardhat": "6.1.5",
"@typechain/ethers-v5": "10.2.0",
"@windingtree/secure-env-cli": "1.0.3"
}
}