forked from ethereumjs/keythereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.53 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
{
"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-env": "1.6.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"
}
}