-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "@dydxprotocol/starkex-eth",
"version": "0.18.0",
"description": "Cryptographic functions for use with StarkEx",
"main": "build/src/index.js",
"scripts": {
"build": "rm -rf build/ && npm run compile",
"compile:watch": "npm run compile -- --watch",
"compile": "tsc",
"coverage": "npm run test -- --coverage",
"fix": "npm run lint -- --fix",
"lint": "eslint --ext .ts,.js .",
"prepublishOnly": "npm run compile",
"test:watch": "npm test -- --watch",
"test": "TZ=UTC NODE_ENV=test npm run build && jest --runInBand --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dydxprotocol/starkex-eth.git"
},
"author": "dYdX",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/dydxprotocol/starkex-eth/issues"
},
"homepage": "https://github.com/dydxprotocol/starkex-eth#readme",
"dependencies": {
"@types/big.js": "^6.0.0",
"@types/elliptic": "^6.4.12",
"axios": "^0.21.4",
"big.js": "^6.0.0",
"bignumber.js": "^9.0.1",
"lodash": "^4.17.20",
"starkware-crypto": "^1.9.7",
"web3": "1.3.6",
"web3-core": "1.3.6",
"web3-eth-contract": "1.3.6",
"web3-utils": "1.3.6"
},
"devDependencies": {
"@dydxprotocol/node-service-base-dev": "0.2.5",
"typescript": "^4.4.4"
}
}