summaryrefslogtreecommitdiffstats
path: root/package.json
blob: e216cbd029c68e833687c0a3462a56a6a7b7f1bf (plain)
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
{
	"name": "decmath",
	"version": "0.1.0",
	"description": "Fast and light decimal math",
	"keywords": [
		"decimal",
		"money",
		"currency",
		"arithmetic",
		"math"
	],
	"maintainers": [
		{
			"name": "Patrick McDermott",
			"email": "patrick.mcdermott@libiquity.com",
			"url": "http://www.pehjota.net/"
		}
	],
	"homepage": "http://www.pehjota.net/projects/decmath/",
	"bugs": {
		"email": "patrick.mcdermott@libiquity.com"
	},
	"license": "GPL-3.0+",
	"author": {
		"name": "Patrick McDermott",
		"email": "patrick.mcdermott@libiquity.com",
		"url": "http://www.pehjota.net/"
	},
	"files": [
		"Makefile",
		"lib/decmath.js",
		"test/10_dadd.js",
		"test/11_dmul.js",
		"test/12_dmul-dadd.js",
		"test/13_drhtz-drhfz.js",
		"test/14_dfmt.js",
		"test/20_nj-st-75-2017.js"
	],
	"main": "lib/decmath.js",
	"repository": {
		"type": "git",
		"url": "git://git.pehjota.net/decmath/decmath.js.git"
	},
	"scripts": {
		"test": "make test"
	},
	"devDependencies": {
		"mocha": ">=0.0.1"
	}
}