-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.46 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@fr0st/numberformatter",
"version": "2.0.9",
"description": "FrostNumberFormatter is a free, open-source number formatting library for JavaScript.",
"keywords": [
"number",
"currency",
"parse",
"format",
"localization",
"international"
],
"homepage": "https://github.com/elusivecodes/FrostNumberFormatter",
"bugs": {
"url": "https://github.com/elusivecodes/FrostNumberFormatter/issues",
"email": "[email protected]"
},
"main": "src/index.js",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "npm run js-compile && npm run js-minify",
"js-compile": "rollup --config",
"js-lint": "eslint",
"js-minify": "terser --compress passes=2 --mangle --source-map \"content=dist/frost-numberformatter.js.map\" --output dist/frost-numberformatter.min.js dist/frost-numberformatter.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/elusivecodes/FrostNumberFormatter.git"
},
"author": "Elusive <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@fr0st/eslint-config": "^1.0.2",
"eslint": "^9.5.0",
"mocha": "^10.4.0",
"rollup": "^4.18.0",
"terser": "^5.31.1"
}
}