-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "bitauth",
"description": "Passwordless authentication using Bitcoin cryptography",
"author": {
"name": "Patrick Nagurny",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitauth.git"
},
"contributors": [
{
"name": "Eric Martindale",
"email": "[email protected]"
},
{
"name": "Gordon Hall",
"email": "[email protected]"
},
{
"name": "Braydon Fuller",
"email": "[email protected]"
},
{
"name": "Rob Riddle",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha",
"test-browser": "karma start karma.conf.js"
},
"main": "index.js",
"version": "0.4.0",
"dependencies": {
"bs58": "^2.0.0",
"secp256k1": "4.0.2"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"karma": "^4.4.1",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^6.2.2",
"watchify": "^3.11.1"
},
"license": "MIT"
}