Added package.json for npm.

This commit is contained in:
Michael Mclaughlin 2012-11-09 12:07:27 +00:00
parent d6b8f29a4a
commit e2c23b329c
2 changed files with 38 additions and 2 deletions

View File

@ -199,5 +199,5 @@ See LICENCE.
## Change Log
####1.0.0
* 8/11/2012
* Initial release
* 8/11/2012 Initial release
* 9/11/12 Added package.json for npm

36
package.json Normal file
View File

@ -0,0 +1,36 @@
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "1.0.0",
"keywords": [
"arbitrary",
"precision",
"arithmetic",
"big",
"number",
"decimal",
"float",
"biginteger",
"bigdecimal",
"bignumber",
"bigint",
"bignum"
],
"repository" : {
"type": "git",
"url": "https://github.com/MikeMcl/bignumber.js.git"
},
"main": "bignumber",
"author": {
"name": "Michael Mclaughlin",
"email": "M8ch88l@gmail.com"
},
"engines": {
"node": "*"
},
"license": "MIT",
"scripts": {
"test": "node ./test/every-test.js",
"build": "uglifyjs -o ./bignumber.min.js ./bignumber.js"
}
}