forked from justmoon/node-bignum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 853 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.9.2",
"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": {
"nan": "~1.6.2"
},
"devDependencies": {
"expresso": ">=0.6.0",
"binary": ">=0.1.7",
"put": ">=0.0.5"
},
"license": "MIT/X11",
"engine": {
"node": ">=0.8.0"
},
"scripts": {
"install": "node-gyp configure build",
"test": "expresso"
},
"contributors": [
"James Halliday <mail@substack.net>"
]
}