-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 933 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
{
"name": "@hyfi06/str-utils",
"version": "1.0.0",
"description": "A collection of string utility functions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyfi06/str-utils.git"
},
"keywords": [
"strings",
"utils",
"tools",
"clear"
],
"author": "Héctor Olvera Vital <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyfi06/str-utils/issues"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"homepage": "https://github.com/hyfi06/str-utils#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}