-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "@algoan/eslint-config",
"version": "2.1.1",
"description": "Algoan ESLint configurations",
"main": "index.js",
"scripts": {
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/eslint-config.git"
},
"keywords": [
"eslint",
"algoan",
"nodejs",
"eslintconfig"
],
"author": "ccoeurderoy",
"license": "ISC",
"bugs": {
"url": "https://github.com/algoan/eslint-config/issues"
},
"homepage": "https://github.com/algoan/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.6",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3"
},
"peerDependencies": {
"eslint": ">= 8",
"prettier": ">= 2",
"typescript": ">= 3"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "github:algoan/semantic-release-npm-multiple#fd763c631503cb88dd143ce72c5838aa1b19ace4",
"@commitlint/config-conventional": "^18.6.0",
"@semantic-release/git": "^10.0.1",
"commitlint": "^18.6.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.10",
"semantic-release": "^23.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
}
}