-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.3 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.3 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@coingrig/core",
"title": "The Coingrig Core library",
"description": "The Coingrig Core library handling the crypto wallet interactions",
"author": "Coingrig",
"version": "1.3.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src test",
"lint-fix": "tsdx lint --fix src test",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"docs": "jsdoc2md \"./src/**/*.ts\" --configure ./jsdoc2md.json --template README.hbs > ./README.md"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/core.esm.js",
"size-limit": [
{
"path": "dist/core.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/core.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@size-limit/preset-small-lib": "5.0.3",
"@types/bitcore-lib": "0.15.3",
"husky": "7.0.2",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.1.0",
"size-limit": "5.0.3",
"tsdx": "0.14.1",
"tslib": "2.3.1",
"typescript": "^4.4.2"
},
"keywords": [
"crypto",
"bitcoin",
"wallet",
"typescript"
],
"homepage": "https://coingrig.com",
"repository": {
"type": "git",
"url": "git+https://github.com/coingrig/core.git"
},
"dependencies": {
"@metamask/eth-sig-util": "^4.0.0",
"axios": "0.21.1",
"bignumber.js": "9.0.1",
"bip32": "2.0.6",
"bip39": "3.0.4",
"bitcoinjs-lib": "5.2.0",
"bitcore-lib": "8.25.10",
"coinselect": "3.1.12",
"decimal.js": "10.3.1",
"dotenv": "10.0.0",
"ethereumjs-wallet": "1.0.1",
"hdkey": "2.0.1",
"web3": "1.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"testTimeout": 30000
}
}