-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
84
{
"name": "@anolilab/commitlint-config",
"version": "5.0.3",
"description": "Anolilab´s shareable coding standard config for commitlint.",
"keywords": [
"anolilab",
"commitlint",
"commitlint-config"
],
"homepage": "https://anolilab.com/nodejs/packages/commitlint-config",
"repository": {
"type": "git",
"url": "https://github.com/anolilab/javascript-style-guide.git",
"directory": "packages/commitlint-config"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/prisis"
},
{
"type": "consulting",
"url": "https://anolilab.com/support"
}
],
"license": "MIT",
"author": {
"name": "Daniel Bannert",
"email": "[email protected]"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"skip.js",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"build": "cross-env NODE_ENV=development tsup",
"build:prod": "cross-env NODE_ENV=production tsup",
"clean": "rimraf node_modules dist",
"postinstall": "node ./skip.js || node ./dist/postinstall.js"
},
"dependencies": {
"@anolilab/package-json-utils": "3.0.9",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/core": "^18.6.1",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"cz-conventional-changelog": "^3.3.0"
},
"devDependencies": {
"@anolilab/semantic-release-preset": "8.0.3",
"@commitlint/cli": "^18.6.1",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"vitest": "^1.1.0"
},
"peerDependencies": {
"@commitlint/cli": "^17.6.5 || ^18.0.0"
},
"engines": {
"node": ">=18.* <=21.*"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"sources": [
"src/index.ts",
"src/postinstall.ts"
]
}