-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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": "common-string-validator",
"version": "1.0.2",
"description": "",
"main": "dist/main.js",
"types": "dist/types/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prebuild": "rm -rf dist",
"start": "tsc && node dist/main.js",
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/arvid-e/common-string-validator.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/arvid-e/common-string-validator/issues"
},
"homepage": "https://github.com/arvid-e/common-string-validator#readme",
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}