-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.33 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@alexevs/ts-guards",
"description": "Typescript guards library.",
"version": "1.0.9",
"license": "MIT",
"keywords": [
"typescript",
"types",
"type guards"
],
"author": {
"name": "AlexEvs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a1exevs/ts-guards.git"
},
"bugs": {
"url": "https://github.com/a1exevs/ts-guards/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"version:major": "ts-node scripts/increase-version.ts major",
"version:minor": "ts-node scripts/increase-version.ts minor",
"version:patch": "ts-node scripts/increase-version.ts patch",
"update-version:major": "./scripts/update-version.sh major",
"update-version:minor": "./scripts/update-version.sh minor",
"update-version:patch": "./scripts/update-version.sh patch",
"build": "rimraf dist && tsc",
"publish-package": "npm publish --access public",
"format": "prettier --write \"{src,linter,tests,scripts}/**/*.ts\"",
"lint": "eslint --config eslint.config.ts \"{src,linter,tests,scripts}/**/*.{ts,tsx}\"",
"lint:fix": "eslint --config eslint.config.ts --fix \"{src,,linter,tests,scripts}/**/*.{ts,tsx}\"",
"test:unit": "jest --config tests/unit/config/config.ts",
"test:unit-cov": "jest --config tests/unit/config/config.ts --coverage",
"test:unit-watch": "jest --config tests/unit/config/config.ts --watch",
"docs": "typedoc"
},
"devDependencies": {
"@alexevs/prettier-config": "0.13.0",
"@eslint/js": "9.24.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.29.1",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.2",
"eslint-import-resolver-typescript": "4.3.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-tsdoc": "0.4.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "16.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jiti": "2.4.2",
"lint-staged": "15.5.1",
"path": "0.12.7",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"ts-jest": "29.3.1",
"ts-node": "10.9.2",
"typedoc": "0.28.2",
"typescript": "5.8.3",
"typescript-eslint": "8.29.1"
},
"packageManager": "yarn@4.9.0"
}