-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.99 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
{
"name": "jwallet-web-keystore",
"version": "0.7.4",
"description": "Library for ethereum blockchain accounts management",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src",
"test": "./node_modules/.bin/mocha --compilers babel-register --recursive",
"clean": "rm -rf ./lib",
"compile": "npm run clean && ./node_modules/.bin/babel ./src --out-dir ./lib",
"build": "npm run lint && npm run compile && npm test",
"precommit": "./node_modules/.bin/lint-staged",
"prepush": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jibrelnetwork/jwallet-web-keystore.git"
},
"author": "Jibrel Network",
"license": "MIT",
"keywords": [
"jibrel",
"jibrelnetwork",
"jwallet",
"blockchain",
"wallet",
"keystore",
"private-key",
"hash-algorithm",
"keymanagement",
"mnemonic",
"key",
"account",
"seed",
"seed-phrase",
"bip32",
"bip32xpublickey",
"extended-public-key",
"ethereum",
"address",
"contracts",
"crypto",
"security",
"derivation"
],
"bugs": {
"url": "https://github.com/jibrelnetwork/jwallet-web-keystore/issues"
},
"homepage": "https://github.com/jibrelnetwork/jwallet-web-keystore#readme",
"dependencies": {
"bitcore-lib": "0.14.0",
"bitcore-mnemonic": "1.2.5",
"crypto-js": "3.1.9-1",
"elliptic": "6.4.0",
"ramda": "0.25.0",
"scrypt.js": "0.2.0",
"tweetnacl": "1.0.0",
"tweetnacl-util": "0.15.0",
"uuid": "3.1.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-exponentiation-operator": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"eslint": "4.7.2",
"eslint-config-airbnb-base": "12.0.1",
"eslint-plugin-import": "2.7.0",
"husky": "0.14.3",
"lint-staged": "6.1.1",
"mocha": "3.5.3",
"should": "13.1.0",
"webpack": "3.6.0"
}
}