-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 910 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 910 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
40
41
42
{
"name": "arb",
"version": "0.0.3",
"description": "arbitrary precision number types and operations on them",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/integer.js | ./node_modules/.bin/tap-bail | ./node_modules/.bin/tspec"
},
"repository": "git@github.com:ashnur/arb.git",
"keywords": [
"bignumbers",
"bigintegers",
"bignum",
"bigint",
"arbitrary",
"precision",
"precise",
"arithmethic",
"complex",
"numbers",
"polynumbers"
],
"author": "ashnur",
"license": "BSD-2-Clause",
"devDependencies": {
"biginteger": "^1.0.3",
"bluebird": "^2.3.2",
"claire": "^0.4.1",
"liberate": "^1.0.1",
"microtime": "^1.0.1",
"tap-bail": "0.0.0",
"tap-spec": "^1.0.0",
"tape": "^3.0.0"
},
"dependencies": {
"liberate": "^1.0.1",
"random-number": "0.0.6"
}
}