forked from EdgeApp/edge-exchange-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.09 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.09 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
{
"name": "edge-exchange-plugins",
"version": "0.11.6",
"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>"
],
"files": [
"CHANGELOG.md",
"index.js",
"lib/*",
"LICENSE",
"package.json",
"README.md"
],
"main": "index.js",
"module": "lib/index.js",
"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",
"test": "node -r sucrase/register test/demo.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": "eslint"
},
"dependencies": {
"biggystring": "^3.0.2",
"cleaners": "^0.2.0",
"esm": "^3.2.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",
"babel-eslint": ">=10.0.0",
"babel-loader": "^8.0.5",
"edge-core-js": "^0.17.3",
"eslint": ">=6.2.2",
"eslint-config-standard-kit": ">=0.14.2",
"eslint-plugin-flowtype": ">=4.3.0",
"eslint-plugin-import": ">=2.18.0",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-prettier": ">=3.0.0",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-simple-import-sort": ">=4.0.0",
"eslint-plugin-standard": ">=4.0.0",
"flow-bin": "^0.89.0",
"husky": ">=3.0.0",
"lint-staged": "^10.1.2",
"prettier": ">=1.0.0",
"rimraf": "^2.6.2",
"sucrase": "^3.9.5",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"react-native": "lib/index.js"
}