-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "keychain.js",
"version": "0.0.6",
"description": "KeyChain JavaScript API wrapper repository",
"main": "./lib/index.js",
"browser": "./dist/keychain.js",
"scripts": {
"test": "mocha --timeout 15000 --reporter spec",
"build": "browserify ./lib/src/keychain.js -o ./dist/keychain.js & browserify ./lib/src/keychainWeb3.js -o ./dist/keychainWeb3.js"
},
"author": "Array.IO",
"repository": {
"type": "git",
"url": "https://github.com/arrayio/keychain.js.git"
},
"license": "MIT",
"dependencies": {
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^6.0.0",
"websocket": "^1.0.28"
},
"devDependencies": {
"bitcoinjs-lib-3-3-2": "npm:bitcoinjs-lib@3.3.2",
"bitcoinjs-lib-4-0-3": "npm:bitcoinjs-lib@4.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"node-fetch": "^2.3.0",
"web3": "1.0.0-beta.46"
},
"bugs": {
"url": "https://github.com/arrayio/keychain.js/issues"
},
"homepage": "https://github.com/arrayio/keychain.js#readme",
"directories": {
"lib": "lib",
"test": "test",
"example": "example"
},
"keywords": [
"KeyChain",
"JavaScript",
"API"
]
}