frac/package.json

37 lines
945 B
JSON
Raw Normal View History

2013-12-14 07:11:37 +00:00
{
"name": "frac",
"version": "1.1.2",
"author": "SheetJS",
"description": "Rational approximation with bounded denominator",
"keywords": [ "math", "fraction", "rational", "approximation" ],
2018-01-19 05:03:42 +00:00
"main": "./frac",
"types": "types",
"dependencies": {},
2014-05-01 03:21:53 +00:00
"devDependencies": {
"voc": "~1.1.0",
"mocha": "~2.5.3",
2018-01-19 05:03:42 +00:00
"blanket": "~1.2.3",
"codepage": "~1.10.0",
"@sheetjs/uglify-js": "~2.7.3",
"@types/node": "^8.0.7",
2018-01-19 05:03:42 +00:00
"dtslint": "^0.1.2",
"typescript": "2.2.0"
2014-05-01 03:21:53 +00:00
},
"repository": { "type":"git", "url":"git://github.com/SheetJS/frac.git" },
"scripts": {
2018-01-19 05:03:42 +00:00
"test": "make test",
"build": "make",
"lint": "make fullint",
"dtslint": "dtslint types"
},
2014-05-01 02:32:25 +00:00
"config": {
"blanket": {
"pattern": "frac.js"
}
},
2018-01-19 05:03:42 +00:00
"homepage": "http://sheetjs.com/opensource",
"bugs": { "url": "https://github.com/SheetJS/frac/issues" },
2014-05-01 03:21:53 +00:00
"license": "Apache-2.0",
"engines": { "node": ">=0.8" }
2013-12-14 07:11:37 +00:00
}