Added package.json for npm.
This commit is contained in:
parent
d6b8f29a4a
commit
e2c23b329c
|
@ -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
|
|
@ -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"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue