-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
{
"name": "set-protocol-utils",
"version": "1.1.3",
"description": "Common utilities for Set Protocol",
"main": "dist/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"cleanup": "find src -name \\*.js* -type f -delete",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"precommit": "lint-staged",
"prepublishOnly": "yarn build",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SetProtocol/set-protocol-utils.git"
},
"author": "Alex Soong <[email protected]> (https://www.setprotocol.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SetProtocol/set-protocol-utils/issues"
},
"homepage": "https://github.com/SetProtocol/set-protocol-utils#readme",
"devDependencies": {
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"tslint": "5.8.0",
"typedoc": "^0.11.1",
"typescript": "^3.1.2"
},
"dependencies": {
"@0xproject/base-contract": "^1.0.4",
"@0xproject/order-utils": "^1.0.1",
"@0xproject/types": "^1.0.7",
"@0xproject/web3-wrapper": "^1.1.2",
"@types/lodash": "4.14.104",
"@types/node": "^8.9.1",
"@types/web3": "1.0.20",
"abi-decoder": "^1.0.9",
"bignumber.js": "~4.1.0",
"bn-chai": "^1.0.1",
"bn.js": "^4.11.8",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ethereum-types": "^1.0.0",
"ethereumjs-util": "^5.0.0",
"ethers": "3.0.22",
"husky": "^0.14.3",
"js-sha3": "^0.7.0",
"lint-staged": "^7.2.0",
"lodash": "^4.17.4",
"tiny-promisify": "^1.0.0",
"tslint-eslint-rules": "^5.3.1",
"types-bn": "^0.0.1",
"web3": "1.0.0-beta.36",
"web3-utils": "1.0.0-beta.36"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn lint",
"git add"
]
},
"publishConfig": {
"access": "public"
}
}