forked from nrwl/precise-commits
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.13 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@softwareventures/precise-commits",
"version": "0.0.0-development",
"description": "precise-commits",
"author": "James Henry <james@henry.sc>",
"contributors": [
"Daniel Cassidy <mail@danielcassidy.me.uk>"
],
"homepage": "https://github.com/softwareventures/precise-commits",
"bugs": "https://github.com/softwareventures/precise-commits/issues",
"repository": "github:softwareventures/precise-commits",
"license": "MIT",
"scripts": {
"commit": "cz",
"fix": "tsc --noEmit && eslint src test --fix && prettier --write .",
"postinstall": "husky",
"lint": "tsc --noEmit && eslint src test && prettier --check .",
"prepack": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"main": "lib/index.js",
"bin": "lib/cli.js",
"files": [
"lib"
],
"engines": {
"node": "^18 || >=20"
},
"dependencies": {
"@softwareventures/array": "7.0.0",
"@softwareventures/nullable": "3.2.0",
"execa": "5.1.1",
"glob": "10.4.5",
"ignore": "5.3.2",
"mri": "1.2.0",
"ora": "5.4.1",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"unknown": "0.2.6"
},
"peerDependencies": {
"prettier": "^1.8.0 || ^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@softwareventures/eslint-config": "7.9.0",
"@softwareventures/precise-commits": "4.0.18",
"@softwareventures/prettier-config": "4.0.0",
"@softwareventures/semantic-release-config": "5.1.0",
"@softwareventures/tsconfig": "7.3.0",
"@types/glob": "8.1.0",
"@types/jest": "29.5.14",
"@types/node": "16.18.122",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitizen": "4.3.1",
"conventional-changelog-conventionalcommits": "7.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-sonarjs": "0.25.1",
"husky": "9.1.7",
"inquirer": "9.3.7",
"jest": "29.7.0",
"mkdirp": "3.0.1",
"pinst": "3.0.0",
"prettier": "3.2.5",
"rimraf": "5.0.10",
"semantic-release": "23.1.1",
"semantic-release-pinst": "1.0.4",
"tempy": "1.0.1",
"ts-jest": "29.2.5",
"typescript": "5.4.5"
},
"eslintConfig": {
"root": true,
"extends": "@softwareventures"
},
"prettier": "@softwareventures/prettier-config",
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"release": {
"extends": "@softwareventures/semantic-release-config"
},
"jest": {
"watchPathIgnorePatterns": [
"<rootDir>/tmp"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
]
},
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"packageManager": "yarn@4.5.3",
"publishConfig": {
"access": "public"
}
}