-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "string-utils-ts",
"version": "2.5.4",
"description": "Provide some useful functions for strings",
"main": "./lib",
"scripts": {
"build": "rm -r lib/ |& tsc --project tsconfig.json",
"test": "jest",
"coverage": "c8 --check-coverage jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjGam/String-Utils-TS.git"
},
"keywords": [
"string"
],
"author": "benjGam",
"license": "ISC",
"bugs": {
"url": "https://github.com/benjGam/String-Utils-TS/issues"
},
"homepage": "https://github.com/benjGam/String-Utils-TS#readme",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.9.0",
"c8": "^7.13.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-tsdoc": "^0.3.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}