mathjs/package.json
2014-07-17 21:00:24 +02:00

75 lines
2.3 KiB
JSON

{
"name": "mathjs",
"version": "0.25.1-SNAPSHOT",
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.",
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
"contributors": [
"Niels Heisterkamp (https://github.com/nheisterkamp)",
"Sebastien Piquemal (https://github.com/sebpiq)",
"Guillermo Indalecio Fernández (https://github.com/guillermobox)",
"Huseyn Guliyev (https://github.com/husayt)",
"Daniel Levin (https://github.com/daniel-levin)",
"Rogelio J. Baucells (https://github.com/rjbaucells)",
"Fabrice Colas (https://github.com/fcolas6013)",
"Marcus Andre (https://github.com/marcusandre)",
"Jim Garrison (https://github.com/garrison)",
"Bart Kiers (https://github.com/bkiers)",
"Bryan Cuccioli (https://github.com/bcuccioli)",
"Finn Pauls (https://github.com/finnp)",
"hamadu (https://github.com/hamadu)",
"Waldir Pimenta (https://github.com/waldir)",
"mtraynham (https://github.com/mtraynham)",
"Elijah Insua (https://github.com/tmpvar)",
"Zach Zibrat (https://github.com/palimpsests)"
],
"homepage": "http://mathjs.org",
"repository": {
"type": "git",
"url": "https://github.com/josdejong/mathjs.git"
},
"keywords": [
"math",
"mathematics",
"functions",
"numeric",
"parser",
"expression",
"number",
"bignumber",
"complex",
"matrix",
"unit"
],
"dependencies": {
"decimal.js": "~3.0.0"
},
"devDependencies": {
"webpack": "latest",
"mocha": "latest",
"istanbul": "latest",
"numbers": "latest",
"uglify-js": "latest",
"underscore": "latest",
"seed-random": "latest",
"gulp": "latest",
"gulp-util": "latest",
"exec": "latest",
"glob": "latest",
"mkdirp": "latest"
},
"main": "./index",
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"docs": "gulp docs",
"test": "mocha test --recursive",
"coverage": "istanbul cover _mocha -- test --recursive; echo \"\nCoverage report is available at ./coverage/lcov-report/index.html\""
},
"bin": {
"mathjs": "./bin/cli.js"
},
"engines": {
"node": ">= 0.9"
}
}