-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 840 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
{
"name": "ts-string-utilities",
"version": "1.4.0",
"description": "Powerful and versatile library for working with strings in TypeScript that provides a wide range of utility functions.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"repository": "https://github.com/ryarturogi/ts-string-utils",
"publishConfig": {
"@ryarturogi:registry": "https://npm.pkg.github.com"
},
"scripts": {
"test": "exit 0",
"jest": "jest",
"prepublishOnly": "tsc -p ./ --outDir dist/"
},
"keywords": [
"typeScript",
"string",
"manipulation",
"utilities"
],
"author": "Ryarturogi",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}