-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 KB
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
58
59
60
61
62
63
64
{
"name": "approximate-number",
"version": "3.0.1",
"type": "module",
"main": "lib/approximate-number.js",
"files": [
"lib"
],
"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": "git+https://github.com/nfriedly/approximate-number.git"
},
"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/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"jest": "^30.3.0"
},
"scripts": {
"test": "npm run lint && npm run test-unit",
"test-unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"watch": "npm run test-unit -- --watch",
"lint": "eslint .",
"autofix": "eslint . --fix"
}
}