forked from ethereumjs/keythereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.25 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
{
"name": "keythereum",
"version": "1.0.2",
"description": "Create, import and export Ethereum keys",
"main": "index.js",
"directories": {
"test": "test",
"lib": "lib"
},
"scripts": {
"test": "mocha test/keys.js",
"geth": "mocha -R progress test/keys.js && mocha -R progress test/geth.js",
"lint": "eslint index.js && eslint gulpfile.js && eslint test/*.js",
"coverage": "istanbul cover -x **/lib/** ./node_modules/mocha/bin/_mocha test/keys.js",
"build": "browserify ./exports.js > ./dist/keythereum.js && uglifyjs ./dist/keythereum.js > ./dist/keythereum.min.js",
"build:tests": "browserify test/keys.js > test/browser/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/keythereum.git"
},
"author": "Jack Peterson <jack@tinybike.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjs/keythereum/issues"
},
"homepage": "https://github.com/ethereumjs/keythereum#readme",
"dependencies": {
"keccak": "1.2.0",
"secp256k1": "3.2.5",
"sjcl": "1.0.6",
"uuid": "3.0.0"
},
"devDependencies": {
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"browserify": "^13.1.1",
"chai": "^3.2.0",
"coveralls": "^2.11.3",
"eslint": "^3.17.1",
"geth": "^0.2.2",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"uglify-js": "^2.4.24",
"validator": "^7.0.0"
},
"react-native": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "react-native-crypto",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify"
},
"browser": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "react-native-crypto",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify"
}
}