-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "typescript-dev-utils",
"version": "2.5.0",
"description": "Library that makes available many useful and common types for regular typescript developers.",
"main": "index.ts",
"author": "Bryan Herrera <bryherrera55@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Bryan-Herrera-DEV/typescript-common-utils"
},
"scripts": {
"test": "jest --no-cache",
"test-changed": "jest --onlyChanged",
"lint": "eslint . --ext .ts",
"style": "npm run lint -- --fix",
"prepare": "husky install",
"release": "standard-version",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:patch": "npm run release -- --release-as patch",
"release:alpha": "npm run release -- --prerelease alpha",
"release:breaking-changes": "npm run release -- --release-as major --prerelease alpha",
"publish": "npm push --follow-tags main",
"test-files": "node scripts/ValidateTest.mjs",
"generate-markdown-tree": "node scripts/MarkdownGenerateTree.js"
},
"keywords": [
"typescript",
"utils",
"common",
"types",
"typescript-common-utils",
"library"
],
"license": "MIT",
"dependencies": {
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"babel-jest": "^29.2.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.27.0",
"globby": "^13.2.0",
"husky": "^8.0.3",
"jest": "^29.2.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsd": "^0.28.1"
},
"engines": {
"node": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/Bryan-Herrera-DEV/typescript-common-utils/issues"
},
"homepage": "https://github.com/Bryan-Herrera-DEV/typescript-common-utils#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}