forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
{
"name": "@typechain/ethers-v4",
"description": "🔌 TypeChain target for ethers-v4",
"keywords": [
"ethers",
"ethersjs",
"ethereum",
"TypeChain",
"TypeScript"
],
"version": "1.0.1",
"license": "MIT",
"repository": "https://github.com/ethereum-ts/Typechain",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"static/**",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "yarn lint && yarn format && yarn test && yarn typecheck && (cd ../.. && yarn build)",
"start": "ts-node -T ./src/index.ts",
"format": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check \"./**/*.ts\"",
"format:fix": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write \"./**/*.ts\"",
"lint": "eslint --ext .ts src test",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit --incremental false --composite false && tsc --noEmit --incremental false --composite false -p tsconfig.types.json",
"clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo",
"test": "mocha --config ../../.mocharc.js",
"test:fix": "yarn lint:fix && yarn format:fix && yarn test && yarn typecheck"
},
"peerDependencies": {
"typechain": "^2.0.0",
"ethers": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/chai-as-promised": "^7.1.2",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.12.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-subset": "^1.6.0",
"eslint": "^6.8.0",
"eslint-config-typestrict": "^1.0.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"ganache-cli": "^6.9.1",
"mocha": "^6.2.2",
"prettier": "^2.0.1",
"sinon": "^8.0.1",
"sinon-chai": "^3.3.0",
"ts-node": "^8.5.4",
"typescript": "3.9.0-beta",
"typechain": "^2.0.0",
"test-utils": "1.0.0"
}
}