-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.41 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@marketprotocol/types",
"version": "1.0.0",
"description": "Typescript defintions for MARKET Protocol smart contract ABIs",
"keywords": [
"MARKET Protocol",
"ethereum",
"blockchain",
"dApp",
"trading",
"derivatives",
"decentralized",
"decentralized exchange",
"exchange"
],
"types": "types/index.d.ts",
"files": [
"types"
],
"author": "Robert Jordan <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/MARKETProtocol/types.git"
},
"engines": {
"node": "^8.11.2"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MARKETProtocol/types/issues"
},
"homepage": "https://marketprotocol.io",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "tslint -t codeFrame 'types/**/*.ts' 'test/**/*.ts'",
"lint:fix": "tslint --fix -t codeFrame 'types/**/*.ts' 'test/**/*.ts'",
"test:prod": "npm run lint",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged",
"typechain": "typechain --target=web3-1.0.0 --outDir types \"./node_modules/@marketprotocol/marketprotocol/build/contracts/+($npm_package_config_typechain_include).json\""
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write --parser typescript",
"npm run lint:fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
},
"typechain": {
"include": "Market*|ERC20|MathLib"
}
},
"dependencies": {
"bignumber.js": "^8.0.1",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"@marketprotocol/marketprotocol": "^2.4.0",
"@types/node": "^10.12.6",
"@types/web3": "^1.0.12",
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.15.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typechain": "^0.3.9",
"typescript": "^3.1.6",
"validate-commit-msg": "^2.14.0",
"web3-fake-provider": "^0.1.0"
}
}