This repository was archived by the owner on Jun 24, 2021. It is now read-only.
forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.86 KB
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
{
"name": "typechain",
"description": "🔌 TypeScript bindings for Ethereum smartcontracts",
"keywords": [
"ethereum",
"TypeScript",
"bindings",
"smartcontract",
"blockchain"
],
"version": "5.0.0",
"license": "MIT",
"repository": "https://github.com/ethereum-ts/Typechain",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/cli/cli.js",
"files": [
"dist/**/*"
],
"scripts": {
"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",
"clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo",
"post-build": "chmod +x ./dist/cli/cli.js && cp ../../README.md .",
"test": "mocha --config ../../.mocharc.js",
"test:fix": "yarn lint:fix && yarn format:fix && yarn test && yarn typecheck"
},
"dependencies": {
"@types/prettier": "^2.1.1",
"command-line-args": "^4.0.7",
"debug": "^4.1.1",
"fs-extra": "^7.0.0",
"glob": "^7.1.6",
"js-sha3": "^0.8.0",
"lodash": "^4.17.15",
"prettier": "^2.1.2",
"ts-essentials": "^7.0.1"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/bluebird": "^3.5.18",
"@types/command-line-args": "^4.0.2",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^5.0.35",
"@types/lodash": "^4.14.139",
"@types/mkdirp": "^1.0.1",
"@types/node": "^8.0.25",
"@types/prettier": "^1.13.2",
"bignumber.js": "^5.0.0",
"bluebird": "^3.5.1",
"coveralls": "^3.0.2",
"glob": "^7.1.2"
}
}