forked from handshake-org/goosig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 924 Bytes
/
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
{
"name": "goosig",
"version": "0.7.0",
"description": "Group of unknown order signatures",
"keywords": [
"crypto",
"goosig",
"rsa"
],
"license": "MIT",
"repository": "git://github.com/handshake-org/goosig.git",
"homepage": "https://github.com/handshake-org/goosig",
"bugs": {
"url": "https://github.com/handshake-org/goosig/issues"
},
"author": "Christopher Jeffrey <[email protected]>",
"main": "./lib/goosig.js",
"scripts": {
"install": "node-gyp rebuild",
"lint": "eslint ./{bench,etc,lib{,/js,/native,/internal},scripts,test{,/util}}/*.js || exit 0",
"test": "bmocha -S 'test/*-test.js'"
},
"dependencies": {
"bcrypto": "~5.1.0",
"bsert": "~0.0.10",
"loady": "~0.0.1"
},
"devDependencies": {
"bmocha": "^2.1.3"
},
"engines": {
"node": ">=8.0.0"
},
"gypfile": true,
"browser": {
"./lib/goo": "./lib/goo-browser.js"
}
}