-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "zilswap-sdk",
"version": "1.3.26",
"description": "Zilswap TypeScript SDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/Switcheo/zilswap-sdk",
"homepage": "https://github.com/Switcheo/zilswap-sdk#readme",
"author": "Switcheo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "tsc && node lib/test.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn run build",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@zilliqa-js/zilliqa": "^2.2.0",
"async-mutex": "^0.2.2",
"bignumber.js": "^9.0.0",
"bn.js": "^5.1.1",
"isomorphic-fetch": "^3.0.0",
"tslib": "^1.11.2"
},
"devDependencies": {
"@types/node": "^13.13.5",
"@types/websocket": "^1.0.0",
"prettier": "^2.0.5",
"tslint-config-prettier": "^1.18.0"
}
}