forked from ethereumjs/keythereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "keythereum",
"version": "1.0.4",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjs/keythereum/issues"
},
"homepage": "https://github.com/ethereumjs/keythereum#readme",
"dependencies": {
"crypto-browserify": "3.12.0",
"keccak": "1.4.0",
"scrypt": "6.0.3",
"secp256k1": "3.5.0",
"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-env": "1.6.0",
"babel-preset-stage-0": "6.16.0",
"browserify": "13.1.1",
"chai": "4.1.2",
"coveralls": "3.0.1",
"eslint": "4.19.1",
"geth": "0.2.2",
"istanbul": "0.4.5",
"mocha": "5.1.1",
"uglify-js": "2.6.1",
"validator": "7.0.0"
},
"browser": {
"scrypt": false
}
}