-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1015 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
37
38
39
40
41
42
43
44
45
46
{
"name": "@acelords/js-utils",
"version": "1.1.6",
"description": "Common utils and helpers used on node, Js and Ts projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"acelords",
"js-utils",
"helpers"
],
"author": "AceLords <info@acelords.com> (https://acelords.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acelords/node-utils"
},
"bugs": {
"url": "https://github.com/acelords/node-utils/issues"
},
"homepage": "https://acelords.com",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/numeral": "^2.0.2",
"@types/pluralize": "^0.0.30",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"dayjs": "^1.11.9",
"numeral": "^2.0.6",
"pluralize": "^8.0.0"
}
}