-
Notifications
You must be signed in to change notification settings - Fork 366
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "@typechain/truffle-v4",
"description": "🔌 TypeChain target for Truffle-v4",
"keywords": [
"truffle-v4",
"ethereum",
"TypeChain",
"TypeScript"
],
"version": "4.1.0",
"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": {
"format": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check \"./**/*.ts\" README.md",
"format:fix": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write \"./**/*.ts\" README.md",
"lint": "eslint --ext .ts src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit --incremental false --composite false",
"clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo",
"test": "true",
"test:fix": "yarn lint:fix && yarn format:fix && yarn test && yarn typecheck"
},
"peerDependencies": {
"typechain": "^5.0.0",
"truffle": "^4.0.0"
},
"devDependencies": {
"ganache-cli": "^6.12.2",
"web3": "^1.2.6",
"typechain": "*",
"@types/lodash": "^4.14.139"
},
"dependencies": {
"lodash": "^4.17.15"
}
}