-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
53
54
{
"name": "@hover-labs/kolibri-js",
"version": "4.3.0",
"description": "SDK Code to Interact with Kolibri, a stablecoin built on Tezos",
"main": "build/src/index.js",
"files": [
"build/**/*",
"src/**/*"
],
"scripts": {
"test": "jest --run-in-band",
"build": "npx tsc -d",
"watch": "npx tsc -d -w",
"docs": "npx typedoc --out docs/ src/",
"lint": "npx eslint . --ext .ts --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"Tezos",
"Kolibri"
],
"author": "Hover Labs <https://hover.engineering>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.177",
"@types/node": "^14.17.15",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-mocha": "^8.2.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^26.6.3",
"prettier": "^2.4.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typedoc": "^0.22.4",
"typescript": "^4.4.3"
},
"dependencies": {
"@taquito/signer": "^13.0.0",
"@taquito/taquito": "^13.0.0",
"@temple-wallet/dapp": "^5.0.2",
"axios": "^0.21.0",
"bignumber.js": "^9.0.1",
"blakejs": "^1.1.1",
"bs58check": "^2.1.2",
"decimal.js": "^10.3.1",
"lodash": "^4.17.21"
}
}