-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.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
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
74
75
76
77
78
79
80
81
82
83
{
"name": "calver",
"version": "24.1.0",
"description": "Calendar based software versioning library as node.js module and with cli support.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"calver": "./dist/cli.js"
},
"scripts": {
"build": "pkgroll --target=es2020 --target=node16 --clean-dist",
"format": "prettier --write --ignore-unknown .",
"lint": "eslint .",
"test": "vitest run",
"prepare": "husky"
},
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/*",
"package.json"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown ."
},
"browserslist": [
"defaults",
"> 0.1%",
"ie 10",
"not ie 9"
],
"repository": {
"type": "git",
"url": "git+https://github.com/muratgozel/node-calver.git"
},
"keywords": [
"calver",
"calendar",
"versioning",
"semver"
],
"author": {
"name": "Murat Gözel",
"email": "[email protected]",
"url": "https://gozel.com.tr"
},
"funding": {
"type": "patreon",
"url": "https://patreon.com/muratgozel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/muratgozel/node-calver/issues"
},
"homepage": "https://github.com/muratgozel/node-calver#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@eslint/js": "^9.3.0",
"eslint": "^9.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"node-releaser": "^2.1.4",
"pkgroll": "^2.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"vitest": "^1.6.0"
},
"dependencies": {
"commander": "^12.0.0"
}
}