-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 869 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 869 Bytes
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
{
"name" : "bigint",
"version" : "0.2.2",
"description" : "Arbitrary-precision integer arithmetic using libgmp",
"main" : "./index.js",
"repository" : {
"type" : "git",
"url" : "http://github.com/substack/node-bigint.git"
},
"keywords": [
"gmp",
"libgmp",
"big",
"bignum",
"bigint",
"integer",
"arithmetic",
"precision"
],
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
},
"devDependencies" : {
"expresso" : ">=0.6.0",
"binary" : ">=0.1.7"
},
"scripts" : {
"test" : "expresso"
},
"license" : "MIT/X11",
"engine" : {
"node" : ">=0.2.0"
},
"scripts" : {
"install" : "node-waf configure build"
}
}