-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.83 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.83 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
{
"name": "bowhead-clam",
"version": "0.1.0",
"author": "Bowhead Health",
"license": "MIT",
"main": "dist/clam.js",
"type": "module",
"exports": {
".": {
"types": {
"require": "./dist/index.d.cts",
"default": "./dist/index.d.ts"
},
"browser": {
"require": "./dist/esm/clam.mjs",
"default": "./dist/esm/clam.mjs"
},
"default": {
"require": "./dist/node/clam.cjs",
"default": "./dist/node/clam.cjs"
}
}
},
"typings": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c -m",
"test": "jest --detectOpenHandles",
"lint": "eslint ./src/**/*.ts"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.19.1",
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"babel-jest": "^29.0.3",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-spellcheck": "^0.0.19",
"ganache": "^7.4.3",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-node": "^29.0.3",
"minify": "^9.1.0",
"nock": "^13.2.9",
"rollup": "^3.26.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-polyfill-node": "^0.12.0",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.0.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"dependencies": {
"axios": "^0.27.2",
"bitcore-mnemonic": "^8.25.38",
"bowhead-web3": "github:bowhead/web3.js#bowhead_stable",
"crypto-es": "^2.0.4",
"encoding": "^0.1.13",
"eth-hd-wallet": "^0.5.1",
"ethereum-hdwallet": "^0.1.2",
"ethereumjs-common": "^1.5.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.5",
"form-data": "^4.0.0",
"openpgp": "^5.5.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"web3": "^1.8.0",
"web3-utils": "^1.8.0"
}
}