-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
61
62
63
64
65
{
"name": "@thorchain/asgardex-thorchain",
"version": "3.0.1",
"description": "Custom Thorchain client and utilities used by ASGARDEX clients",
"keywords": [
"THORChain",
"ASGARDEX"
],
"author": "THORChain",
"homepage": "https://gitlab.com/thorchain/asgardex-common/asgardex-thorchain",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:thorchain/asgardex-common/asgardex-thorchain.git"
},
"scripts": {
"clean": "rimraf lib/**",
"build": "rollup -c",
"test": "jest",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix",
"prepublishOnly": "yarn build",
"start:example": "ts-node example/index.ts"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"cosmos-client": "^0.39.2",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"rollup": "2.26.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"nock": "^13.0.4"
}
}