forked from EdgeApp/edge-exchange-plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.38 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.38 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": "edge-exchange-plugins",
"version": "0.5.3",
"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",
"flow": "flow",
"format": "import-sort -l --write '*.js' 'src/**/*.js' 'test/**/*.js'; prettier-eslint --write '*.js' 'src/**/*.js' 'test/**/*.js'",
"lint": "eslint '*.js' 'src/**/*.js' 'test/**/*.js'",
"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",
"import-sort --list-different",
"prettier-eslint --list-different"
]
},
"dependencies": {
"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.1",
"babel-loader": "^8.0.5",
"edge-core-js": "^0.15.0",
"eslint": "5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.89.0",
"husky": "^1.1.3",
"import-sort-cli": "^5.2.0",
"import-sort-parser-babylon": "^5.2.0",
"import-sort-style-module": "^5.0.0",
"lint-staged": "^8.1.0",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2",
"sucrase": "^3.9.5",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"importSort": {
".js, .es": {
"parser": "babylon",
"style": "module"
}
},
"react-native": "lib/index.js"
}