-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 744 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 744 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
{
"author": "Roman Shtylman <shtylman@gmail.com>",
"name": "num",
"description": "arbitrary precision integer and decimal library in javascript",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "git://github.com/defunctzombie/num.git"
},
"keywords": [
"decimal",
"num",
"number",
"arithmatic",
"precision"
],
"main": "num.js",
"dependencies": {
"int": "0.2.0"
},
"devDependencies": {
"zuul": "~1.16.2",
"mocha": "~1.21.4"
},
"scripts": {
"test": "mocha && zuul -- test/*.js",
"test-node": "mocha",
"test-local": "zuul --local -- test/*.js"
},
"contributors": [
"Roman Shtylman <shtylman@gmail.com>",
"Vadim Graboys <dimva13@gmail.com>"
]
}