forked from EdgeApp/edge-exchange-plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.38 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
{
"name": "edge-exchange-plugins",
"version": "0.13.2",
"description": "Exchange-rate sources for the Edge core",
"repository": {
"type": "git",
"url": "git@github.com:EdgeApp/edge-exchange-plugins.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Edge",
"contributors": [
"MrJLP <MrJLP@users.noreply.github.com>",
"William Swanson <william@edgesecure.co>",
"Paul Puey <paul@edgesecure.co>"
],
"main": "index.js",
"module": "lib/index.js",
"files": [
"CHANGELOG.md",
"index.js",
"lib/*",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "rimraf lib && sucrase ./src -q -d ./lib -t flow && webpack",
"fix": "npm run lint -- --fix",
"flow": "flow",
"lint": "eslint .",
"precommit": "lint-staged && flow && npm test && npm run build",
"prepare": "npm run build",
"start.dev": "nodemon",
"test": "node -r sucrase/register test/demo.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": "eslint"
},
"dependencies": {
"@ethersproject/address": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/solidity": "^5.5.0",
"biggystring": "^3.0.2",
"cleaners": "^0.3.9",
"esm": "^3.2.4",
"ethers": "^5.5.4",
"hashjs": "^1.2.0",
"iso4217": "^0.2.0",
"utf8": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/runtime": "^7.0.0",
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"edge-core-js": "^0.17.29",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"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",
"flow-bin": "^0.89.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.15",
"prettier": "^2.2.0",
"process": "^0.11.10",
"rimraf": "^2.6.2",
"stream-browserify": "^3.0.0",
"sucrase": "^3.9.5",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"
},
"react-native": "lib/index.js"
}