forked from justmoon/node-bignum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
{
"name": "bignum",
"version": "0.13.0",
"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": "justmoon@members.fsf.org",
"url": "http://www.justmoon.net"
},
"dependencies": {
"bindings": "~1.3.0",
"nan": "~2.10.0",
"prebuild-install": "~4.0.0",
"safe-buffer": "~5.1.2"
},
"devDependencies": {
"prebuild": "~7.6.0",
"prebuild-ci": "~2.2.3",
"put": "~0.0.5",
"standard": "~11.0.1",
"tap": "~12.0.1"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --all --strip --verbose",
"test": "standard && tap --timeout 120 test/*.js && prebuild-ci"
},
"binary": {
"host": "https://rvagg-node.s3-us-west-2.amazonaws.com",
"module_name": "bignum",
"module_path": "binding/",
"remote_path": "./{name}/v{version}"
},
"license": "MIT",
"contributors": [
"James Halliday <mail@substack.net>",
"Rod Vagg <rod@vagg.org>"
]
}