forked from dethcrypto/TypeChain
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.17 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
{
"name": "typechain",
"version": "0.0.9",
"license": "MIT",
"repository": "https://github.com/Neufund/Typechain",
"devDependencies": {
"@types/bignumber.js": "^4.0.3",
"@types/bluebird": "^3.5.18",
"@types/chai": "^4.0.6",
"@types/chai-as-promised": "^7.1.0",
"@types/chalk": "^0.4.31",
"@types/command-line-args": "^4.0.2",
"@types/debug": "^0.0.30",
"@types/fs-extra": "^4.0.2",
"@types/glob": "^5.0.32",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.25",
"@types/prettier": "^1.8.1",
"bignumber.js": "^5.0.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"ganache-cli": "^6.0.3",
"mocha": "^4.0.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-language-service": "^0.9.7",
"typescript": "^2.6.1",
"typestrict": "^0.0.6",
"web3": "0.20.2",
"web3-typescript-typings": "^0.7.2"
},
"dependencies": {
"chalk": "^2.1.0",
"command-line-args": "^4.0.7",
"debug": "^3.0.1",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"prettier": "^1.9.1"
},
"peerDependencies": {
"web3": "0.20.x"
},
"scripts": {
"prepublish": "yarn build",
"build": "rm -rf ./dist && tsc -p ./tsconfig.production.json",
"postbuild": "chmod +x ./dist/cli.js",
"lint": "yarn formatting && yarn tslint",
"lint:fix": "yarn tslint:fix && yarn formatting:fix",
"tslint": "tslint -c ./tslint.json --project ./tsconfig.json --format stylish --exclude 'test/integration/abis/*.ts'",
"tslint:fix": "tslint -c ./tslint.json --project ./tsconfig.json --format stylish --exclude 'test/integration/abis/*.ts' --fix ",
"formatting": "prettier --list-different **/*.ts",
"formatting:fix": "prettier --write **/*.ts",
"test": "yarn lint && ./scripts/test.sh",
"test:unit": "NODE_ENV=test mocha --require ts-node/register.js --require test/setup-chai.ts 'test/unit/**/*.spec.ts'",
"test:integration": "NODE_ENV=test mocha --require ts-node/register.js --require test/setup-chai.ts 'test/integration/web3.ts' 'test/integration/**/*.spec.ts'",
"test:generateContracts": "NODE_ENV=development ts-node ./lib/cli.ts --force"
},
"bin": "./dist/cli.js"
}