summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-01-07 06:17:56 (EST)
committer P. J. McDermott <pj@pehjota.net>2017-01-07 06:28:18 (EST)
commitd95622f14efe87b095318833bd2366e8190c493c (patch)
tree33ec247eb6e0d72b19129da383a4e6cab8ff4926
parent88c07d972fae4fffa22dffd9f83ee88387d50118 (diff)
downloaddecmath.js-d95622f14efe87b095318833bd2366e8190c493c.zip
decmath.js-d95622f14efe87b095318833bd2366e8190c493c.tar.gz
decmath.js-d95622f14efe87b095318833bd2366e8190c493c.tar.bz2
package.json: New file
-rw-r--r--package.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..292eda5
--- /dev/null
+++ b/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "decmath",
+ "version": "0.1.0",
+ "description": "Fast and light decimal arithmetic",
+ "homepage": "",
+ "bugs": {
+ "email": ""
+ },
+ "license": "GPL-3.0+",
+ "author": {
+ "name": "Patrick McDermott",
+ "email": "",
+ "url": ""
+ },
+ "files": [
+ "Makefile",
+ "lib/decmath.js",
+ "test/10_dadd.js",
+ "test/11_dmul.js",
+ "test/12_dmul-dadd.js",
+ "test/13_drhtz-drhfz.js",
+ "test/20_nj-st-75-2017.js"
+ ],
+ "main": "lib/decmath.js",
+ "repository": {
+ "type": "git",
+ "url": ""
+ },
+ "scripts": {
+ "test": "make test"
+ },
+ "devDependencies": {
+ "mocha": ">=0.0.1"
+ },
+ "keywords": [
+ "decimal",
+ "money",
+ "currency",
+ "arithmetic",
+ "math"
+ ]
+}