-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.35 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
{
"name": "commitlint-config-yarn-scopes",
"version": "2.0.0",
"description": "Commitlint config to enforce packages' name in a workspace as commit scope.",
"main": "lib/index.js",
"module": "esm/index.js",
"typings": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/valeriobelli/commitlint-config-yarn-scopes"
},
"bugs": {
"url": "https://github.com/valeriobelli/commitlint-config-yarn-scopes/issues"
},
"author": "Valerio Belli <belli.valerio@outlook.com>",
"license": "MIT",
"keywords": [
"conventional-changelog",
"commitlint",
"commitlint-config",
"conventional-commits",
"yarn"
],
"engines": {
"node": ">=14.0.0"
},
"files": [
"esm/",
"lib/",
"typings/",
"CHANGELOG.md"
],
"exports": {
"import": "./esm/index.mjs",
"require": "./lib/index.js"
},
"scripts": {
"build": "yarn clean && yarn build:bundle && yarn build:typings",
"build:bundle": "rollup -c rollup.config.js",
"build:typings": "tsc --project tsconfig.code.json --emitDeclarationOnly",
"clean": "rimraf .tsbuildinfo esm lib typings",
"lint": "eslint --ext js,ts src",
"postinstall": "husky install",
"postpack": "pinst --enable",
"prepack": "pinst --disable",
"test": "vitest",
"typecheck": "tsc --project tsconfig.code.json --noEmit"
},
"dependencies": {
"pinst": "^3.0.0",
"semver": "^7.3.7"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/types": "^17.0.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-node-resolve": "^13.3.0",
"@swc/core": "^1.2.213",
"@types/node": "^14.14.31",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-swc3": ">=0.3.0 <1.0.0",
"typescript": "^4.7.4",
"vitest": ">=0.18.0 <1.0.0"
},
"packageManager": "yarn@3.2.1"
}