forked from EdgeApp/edge-core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.69 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
124
125
{
"name": "edge-core-js",
"version": "0.9.7",
"description": "Edge account & wallet management library",
"keywords": [
"bitcoin",
"blockchain",
"ethereum",
"key management",
"security"
],
"homepage": "https://edgesecure.co",
"license": "SEE LICENSE IN LICENSE",
"author": "Airbitz, Inc.",
"contributors": [
"William Swanson <[email protected]>",
"Tim Horton <[email protected]>",
"Paul Puey <[email protected]>",
"Eliran Zach <[email protected]>",
"Kevin Sullivan <[email protected]>",
"Allen Hujsak <[email protected]>"
],
"files": [
"CHANGELOG.md",
"lib/*",
"LICENSE",
"package.json",
"README.md",
"src/*"
],
"main": "lib/edge-core-index.js",
"module": "lib/edge-core-index.es.js",
"repository": {
"type": "git",
"url": "[email protected]:Airbitz/airbitz-core-js.git"
},
"scripts": {
"build": "rimraf lib && webpack && rollup -c",
"build:test": "webpack && rollup -c test/rollup.config.js",
"precommit": "lint-staged && flow && npm test && npm run build",
"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'",
"lint:fix": "npm run format",
"prepare": "npm run build",
"pretest": "npm run build:test",
"test": "mocha --require source-map-support/register build/tests.js",
"updot": "updot"
},
"dependencies": {
"aes-js": "^3.1.0",
"base-x": "^1.0.4",
"biggystring": "^3.0.2",
"currency-codes": "^1.1.2",
"detect-bundler": "^1.0.0",
"disklet": "^0.2.2",
"elliptic": "^6.4.0",
"hash.js": "^1.0.3",
"hmac-drbg": "^1.0.1",
"json-csv": "^1.5.0",
"node-fetch": "^2.0.0",
"redux": "^3.6.0",
"redux-keto": "^0.3.2",
"redux-pixies": "^0.3.4",
"regenerator-runtime": "^0.11.1",
"rfc4648": "^1.1.0",
"scrypt-js": "^2.0.3",
"utf8": "^3.0.0",
"ws": "^5.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"eslint": "4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.46.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.62.0",
"husky": "^0.14.3",
"import-sort-cli": "^4.2.0",
"import-sort-parser-babylon": "^4.2.0",
"import-sort-style-module": "^4.2.0",
"lint-staged": "^7.0.0",
"mocha": "^3.5.0",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2",
"rollup": "0.48.0",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-flow-entry": "^0.2.0",
"rollup-plugin-multi-entry": "^2.0.2",
"source-map-support": "^0.5.3",
"updot": "^1.1.4",
"webpack": "^3.5.3"
},
"importSort": {
".js, .es": {
"parser": "babylon",
"style": "module"
}
},
"lint-staged": {
"*.js": [
"eslint",
"import-sort --list-different",
"prettier-eslint --list-different"
]
},
"peerDepdendencies": {
"react-native-fast-crypto": "^1.5.3",
"react-native-randombytes": "git://github.com/Airbitz/react-native-randombytes.git#40d02a5f922",
"react-native-tcp": "git://github.com/Airbitz/react-native-tcp.git"
},
"react-native": "lib/edge-core-index-rn.js"
}