-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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
45
46
47
48
49
50
51
52
53
{
"name": "TPA",
"version": "1.0.14",
"description": "Total Precision Arithmetic",
"homepage": "http://dthwaite.github.io/tpa",
"tonicExampleFilename": "tonicexample.js",
"keywords": [
"number",
"big",
"precision",
"integer",
"fraction",
"big integer",
"big fraction",
"big number",
"big numbers",
"arithmetic",
"precision",
"exact arithmetic",
"huge numbers"
],
"author": "Dominic Thwaites <dominicthwaites@mac.com> (http://www.domt.name)",
"main": "./lib/tpa.js",
"repository": {
"type": "git",
"url": "git@github.com:dthwaite/TPA.git"
},
"bugs": {
"url": "https://github.com/dthwaite/TPA/issues",
"email": "dominicthwaites@mac.com"
},
"scripts": {
"test": "ALL_BASES='yes' mocha test/ && istanbul cover _mocha -- -R spec",
"coverage": "open coverage/lcov-report/index.html",
"lint": "eslint lib/tpa.js lib/N.js",
"build": "./scripts/build.sh"
},
"devDependencies": {
"assert": "^1.3.0",
"coveralls": "^2.11.9",
"eslint": "^2.2.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.0",
"mocha-lcov-reporter": "^1.2.0",
"uglify-js": "^2.6.2",
"browserify": "^13.0.0",
"ink-docstrap": "^1.1.4"
},
"license": "MIT",
"engines": {
"node": ">= 2.2.x"
}
}