-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "@dydxprotocol/starkex-lib",
"version": "1.2.0",
"description": "Cryptographic functions for use with StarkEx",
"main": "build/src/index.js",
"scripts": {
"build": "rm -rf build/ && npm run compile && npm run copy-files",
"compile:watch": "npm run compile -- --watch",
"compile": "tsc",
"copy-files": "copyfiles ./**/*.so build/",
"coverage": "NODE_ENV=test nyc --reporter=lcovonly mocha --timeout 4000 'build/__tests__/**/*.test.js'",
"fix": "npm run lint -- --fix",
"lint": "eslint --ext .ts,.js .",
"prepublishOnly": "npm run compile",
"test:watch": "npm test -- --watch",
"test": "NODE_ENV=test mocha --timeout 4000 'build/__tests__/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dydxprotocol/starkex-lib.git"
},
"author": "dYdX Trading Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dydxprotocol/starkex-lib/issues"
},
"homepage": "https://github.com/dydxprotocol/starkex-lib#readme",
"dependencies": {
"@types/big.js": "6.0.0",
"@types/elliptic": "^6.4.12",
"big.js": "6.0.3",
"bigint-buffer": "^1.1.5",
"bip39": "^3.0.3",
"bn.js": "5.1.3",
"ethereum-cryptography": "^0.1.3",
"ffi-napi": "^4.0.1",
"hash.js": "^1.1.7"
},
"devDependencies": {
"@dydxprotocol/node-service-base-dev": "0.2.5",
"@types/ffi-napi": "^4.0.4",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^9.0.10",
"copyfiles": "^2.4.1",
"expect": "^26.6.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4",
"typescript": "^4.4.4"
}
}