forked from defunctzombie/num
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 886 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 886 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
43
44
{
"author": "Roman Shtylman <shtylman@gmail.com>",
"name": "num",
"description": "arbitrary precision integer and decimal library in pure javascript",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "git://github.com/shtylman/node-num.git"
},
"keywords": [
"decimal",
"num",
"arithmatic",
"precision"
],
"main": "num.js",
"dependencies": {
"int": "0.1.1"
},
"devDependencies": {
"mocha": ">=1.x.x"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"scripts": {
"test": "mocha"
},
"contributors": [
"Roman Shtylman <shtylman@gmail.com>",
"Vadim Graboys <dimva13@gmail.com>"
],
"testling": {
"browsers": [
"ie8..latest",
"firefox/15..latest",
"chrome/22..latest",
"safari/5.1..latest"
],
"harness": "mocha-tdd",
"files": "test/*.js"
}
}