-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
91 lines (91 loc) · 2.65 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ethr-did-registry",
"version": "1.3.0",
"description": "A repository storing keys and other data about Ethereum Decentralized Identifiers (DIDs)",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"typesVersions": {
"*": {
"dist/index.d.ts": [
"dist/index.d.ts"
],
"*": [
"./dist/index.d.js"
]
}
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-jest": "28.1.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"ethereum-waffle": "^3.4.4",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.6.9",
"hardhat": "^2.9.9",
"hardhat-gas-reporter": "^1.0.8",
"ls": "^0.2.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"semantic-release": "19.0.3",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.8.2",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"uint8arrays": "^3.0.0"
},
"scripts": {
"build:js": "tsc",
"build:sol": "hardhat compile",
"build": "yarn build:sol && yarn build:js",
"test": "hardhat test",
"lint:js": "npx eslint '**/*.{js,ts}' --fix",
"lint:sol": "npx solhint 'contracts/**/*.sol' --fix",
"lint": "yarn lint:sol && yarn lint:js",
"format": "prettier -w '**/*.{ts,js,json,md}'",
"prepublishOnly": "yarn test && yarn format && yarn lint",
"release": "semantic-release --debug"
},
"author": "Pelle Braendgaard",
"contributors": [
"Mircea Nistor <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:uport-project/ethr-did-registry.git"
},
"files": [
"artifacts",
"contracts",
"dist",
"typechain-types"
]
}