-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
123 lines (123 loc) · 3.72 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "edge-currency-plugins",
"version": "3.4.4",
"description": "Edge currency plugins to fetch and process wallet accounts, balances and transactions.",
"homepage": "https://edge.app/",
"repository": "https://github.com/EdgeApp/edge-currency-plugins",
"license": "MIT",
"author": "Airbitz, Inc.",
"main": "./lib/index.js",
"browser": {
"ws": false
},
"types": "./edge-currency-plugins.d.ts",
"files": [
"/android/build.gradle",
"/android/src/*",
"/edge-currency-plugins.d.ts",
"/edge-currency-plugins.podspec",
"ios/*",
"lib/*",
"/LICENSE",
"/package.json",
"/README.md"
],
"scripts": {
"clean": "rimraf android/src/main/assets/edge-currency-plugins dist lib",
"coverage": "nyc mocha && nyc report --reporter=cobertura --reporter=html",
"fix": "eslint . --fix",
"lib": "sucrase -q -t typescript,imports -d ./lib ./src",
"lint": "eslint .",
"precommit": "lint-staged && npm-run-all types test",
"prepare": "husky install && npm-run-all clean lib types webpack",
"start": "webpack serve",
"test": "mocha",
"types": "tsc",
"webpack": "webpack && cp -r android/src/main/assets/edge-currency-plugins dist",
"verify": "npm-run-all prepare lint types test"
},
"lint-staged": {
"*.{js,ts,json}": "eslint"
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"altcoin-js": "^1.0.0",
"async-mutex": "^0.2.6",
"baselet": "^0.3.0",
"biggystring": "^4.2.3",
"bip32": "^2.0.5",
"bip32grs": "^2.0.5",
"bip39": "^3.0.2",
"bitcoinjs-message": "^2.2.0",
"blake-hash": "^2.0.0",
"bn.js": "^5.1.2",
"bs58": "^4.0.1",
"bs58grscheck": "^2.1.2",
"bs58smartcheck": "^2.0.4",
"cleaners": "^0.3.17",
"disklet": "^0.4.5",
"ecpair": "https://github.com/EdgeApp/ecpair.git#b193eb8ea2ec0c93b528f4b0223a605407ff43e4",
"edge-sync-client": "^0.2.7",
"memlet": "^0.1.7",
"uri-js": "^4.4.0",
"url-parse": "^1.5.2",
"wif-smart": "^2.0.0",
"wifgrs": "^2.0.6",
"ws": "^7.4.6"
},
"devDependencies": {
"@sucrase/webpack-loader": "^2.0.0",
"@types/base-x": "^3.0.6",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/bs58grscheck": "^2.1.0",
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.3",
"@types/jsonfile": "^6.0.1",
"@types/mocha": "^7.0.1",
"@types/node": "^16.11.18",
"@types/node-fetch": "2.x",
"@types/request": "^2.48.7",
"@types/url-parse": "^1.4.3",
"@types/wif": "^2.0.2",
"@types/wifgrs": "^2.0.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"base-x": "^4.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"edge-core-js": "^2.7.0",
"esbuild-loader": "^4.1.0",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json-files": "^1.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"husky": "^7.0.4",
"jsonfile": "^6.1.0",
"lint-staged": "^10.5.3",
"mocha": "^8.1.3",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"mochawesome": "^7.0.1",
"node-fetch": "2.x",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"parcel": "^1.12.4",
"prettier": "^2.2.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"sucrase": "^3.12.1",
"typescript": "^4.1.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"wif": "^2.0.6"
},
"react-native": "./lib/react-native.js"
}