forked from EdgeApp/edge-currency-accountbased
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.07 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
{
"name": "edge-currency-accountbased",
"version": "0.3.2",
"description": "Edge currency plugin for account based currencies",
"homepage": "https://edge.app/",
"repository": {
"type": "git",
"url": "git@github.com:EdgeApp/edge-currency-accountbased.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Edge (Airbitz, Inc)",
"contributors": [
"Paul Puey <paul@edge.app>"
],
"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": "nyc mocha -r sucrase/register './test/**/*.test.js'",
"posttest": "nyc report --reporter=html",
"updot": "updot"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": [
"eslint",
"import-sort --list-different",
"prettier-eslint --list-different"
]
},
"dependencies": {
"base-x": "^1.0.4",
"biggystring": "^3.0.0",
"bip39": "^2.5.0",
"edge-ripple-lib": "^1.0.0-beta.2",
"eosjs": "^16.0.9",
"esm": "^3.2.4",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "git://github.com/EdgeApp/ethereumjs-wallet.git#6157e11ea10a734fbe55f4c7ea542780975b60ef",
"eztz.js": "git://github.com/TezTech/eztz.git#0c6b93ffdd774f7ed3c528058f854deb0649a61c",
"jsonschema": "^1.1.1",
"stellar-sdk": "^0.11.0",
"tezos-uri": "^1.0.3",
"uri-js": "^3.0.2",
"url-parse": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^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",
"chai": "^4.1.2",
"edge-core-js": "^0.15.11",
"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",
"mocha": "^4.0.0",
"node-fetch": "^1.7.3",
"nyc": "^11.3.0",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2",
"sucrase": "^3.9.5",
"updot": "^1.1.4",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"resolutions": {
"scrypt.js": "0.3.0"
},
"importSort": {
".js, .es": {
"parser": "babylon",
"style": "module"
}
},
"react-native": "./lib/react-native-accountbased.js"
}