-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 860 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "toformat",
"version": "2.0.0",
"description": "Adds a `toFormat` instance method to decimal.js or big.js",
"main": "toFormat.js",
"devDependencies": {
"big.js": "*",
"decimal.js": ">=5.0.0"
},
"scripts": {
"test": "node test",
"build": "uglifyjs toFormat.js -c -m -o toFormat.min.js --preamble \"/* toFormat.js v2.0.0 https://github.com/MikeMcl/toFormat */\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikeMcl/toFormat.git"
},
"keywords": [
"format",
"bignumber",
"big",
"number",
"big.js",
"decimal.js"
],
"author": "Michael Mclaughlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/MikeMcl/toFormat/issues"
},
"homepage": "https://github.com/MikeMcl/toFormat#readme",
"files": [
"toFormat.js",
"toFormat.min.js"
]
}