-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.23 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
55
56
57
58
59
60
{
"name": "@quipuswap/sdk",
"version": "3.1.0",
"main": "dist/index.js",
"module": "dist/sdk.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"license": "MIT",
"author": {
"name": "Madfish Solutions",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madfish-solutions/quipuswap-sdk.git"
},
"bugs": {
"url": "https://github.com/madfish-solutions/quipuswap-sdk/issues"
},
"homepage": "https://github.com/madfish-solutions/quipuswap-sdk#readme",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"dependencies": {
"bignumber.js": "^9.1.0"
},
"peerDependencies": {
"@taquito/taquito": "^13.0.0"
},
"devDependencies": {
"@taquito/taquito": "^15.0.0",
"husky": "^4.3.8",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^3.7.3"
},
"resolutions": {
"elliptic": "^6.5.4",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"trailingComma": "es5",
"arrowParens": "always"
}
}