-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "@reach-sh/humble-sdk",
"version": "2.1.3",
"description": "A Javascript library for interacting with the HumbleSwap DEx",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://app.humble.sh",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --watchAll --testTimeout=300000 --detectOpenHandles",
"test:ci": "jest --testTimeout=300000",
"compress": "make compress",
"build": "rm -rf lib/ && tsc && make compress",
"beta": "npm run build && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "https://github.com/reach-sh/humble-sdk.git"
},
"keywords": [
"humbleswap",
"humblesdk",
"DEx sdk",
"swap tokens"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/await-timeout": "^0.3.1",
"@types/axios": "^0.14.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.45",
"jest": "^27.5.1",
"jest-junit": "^14.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"uglify-js": "^3.17.1"
},
"dependencies": {
"@reach-sh/stdlib": "0.1.10-rc.6",
"axios": "^0.27.2",
"reach-edge": "npm:@reach-sh/stdlib@^0.1.12-rc.0"
}
}