-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
48
49
50
51
52
53
54
55
56
57
{
"name": "approximate-number",
"version": "2.1.1",
"main": "lib/approximate-number.js",
"description": "Converts numbers into a more human-friendly format, similar to `ls`'s `--human-readable` flag (`ls -lh`) or Stack Overflow's reputation numbers. For example, 123456 becomes '123k'.",
"homepage": "https://github.com/nfriedly/approximate-number",
"bugs": "https://github.com/nfriedly/approximate-number/issues",
"author": {
"name": "Nathan Friedly",
"url": "http://nfriedly.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/nfriedly/approximate-number"
},
"license": "MIT",
"keywords": [
"approximate-number",
"abbreviate",
"abbreviated",
"human",
"friendly",
"readable",
"large",
"big",
"number",
"numbers",
"stack overflow",
"stack exchange",
"-h",
"format",
"formatter",
"approximate",
"approximation",
"short",
"simple",
"near",
"nearest",
"closest",
"round",
"thousand",
"million",
"billion",
"trillion"
],
"devDependencies": {
"eslint": "^8.45.0",
"mocha": "^10.2.0"
},
"scripts": {
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha",
"watch": "mocha --watch",
"lint": "eslint .",
"autofix": "eslint . --fix"
}
}