forked from airswap/airswap-protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1012 Bytes
/
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
{
"name": "@airswap/utils",
"version": "0.4.2",
"description": "Utilities for AirSwap Developers",
"contributors": [
"Don Mosites <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/airswap/airswap-protocols"
},
"homepage": "https://github.com/airswap/airswap-protocols/tree/master/tools/utils",
"keywords": [
"airswap"
],
"license": "Apache-2.0",
"main": "build/index.js",
"files": [
"/build"
],
"scripts": {
"clean": "rm -rf ./build",
"compile": "yarn clean; tsc -b",
"test": "yarn compile; mocha -r ts-node/register test/**/*.ts"
},
"dependencies": {
"@airswap/constants": "0.3.10",
"@airswap/types": "3.5.15",
"@types/ethereumjs-util": "^6.1.0",
"eth-sig-util": "^3.0.0",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.0.25"
},
"devDependencies": {
"@types/mocha": "^7.0.1",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}