-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "@daonations/typechain",
"repository": "github:daonation/daonation-typechain",
"version": "1.0.4",
"description": "Types generated from daonation contracts.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"files": [
"dist/typechain-types/",
"dist/deployed/",
"typechain-types/",
"deployed"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.6",
"@types/node": "^18.0.6",
"chai": "^4.2.0",
"ethers": "^5.6.9",
"mocha": "^7.1.2",
"prettier": "2.0.5",
"ts-node": "^10.9.1",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"ethers": "^5.6.9"
}
}