-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
43 lines (43 loc) · 915 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
39
40
41
42
43
{
"name": "bignum",
"version": "0.13.1",
"description": "Arbitrary-precision integer arithmetic using OpenSSL",
"main": "./index.js",
"repository": {
"type": "git",
"url": "http://github.com/justmoon/node-bignum.git"
},
"keywords": [
"openssl",
"big",
"bignum",
"bigint",
"integer",
"arithmetic",
"precision"
],
"author": {
"name": "Stefan Thomas",
"email": "[email protected]",
"url": "http://www.justmoon.net"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0",
"safe-buffer": "^5.2.0"
},
"devDependencies": {
"put": "0.0.6",
"standard": "^14.3.1",
"tap": "^14.10.5"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "standard && tap --timeout 120 test/*.js"
},
"license": "MIT",
"contributors": [
"James Halliday <[email protected]>",
"Rod Vagg <[email protected]>"
]
}