-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.34 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
58
59
60
{
"name": "aveta",
"version": "1.5.2",
"description": "Convert long numbers into abbreviated and human-readable strings.",
"main": "build/aveta.js",
"types": "build/aveta.d.ts",
"bin": {
"aveta": "bin/aveta"
},
"author": "tal7aouy <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts --fix",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tal7aouy/aveta.git"
},
"bugs": {
"url": "https://github.com/tal7aouy/aveta/issues"
},
"homepage": "https://github.com/tal7aouy/aveta#readme",
"keywords": [
"human",
"readable",
"easy",
"short numbers",
"big",
"large",
"numbers",
"beauty",
"human",
"format",
"thousand",
"million",
"billion",
"trillion",
"aveta"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"yargs": "^17.3.1"
}
}