-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "@neo9/n9-coding-style",
"version": "6.1.0",
"description": "Set of rules ready to use in any JS project, based on eslint",
"keywords": [
"linter",
"eslint",
"node"
],
"license": "GPL-3.0-or-later",
"main": ".eslintrc.yaml",
"scripts": {
"build": "echo 'Nothing to build'",
"lint": "prettier --check '**/*'",
"format": "prettier --write *.*",
"test:dev": "ava --no-worker-threads --verbose --color --serial --watch",
"test": "ava --no-worker-threads --verbose --serial",
"release": "release-it",
"release:pre-release": "release-it --preRelease",
"release:dry": "release-it --dry-run"
},
"author": {
"name": "Benjamin DANIEL",
"email": "benjamin.daniel@neo9.fr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo9/n9-coding-style.git"
},
"homepage": "https://github.com/neo9/n9-coding-style#readme",
"type": "module",
"engines": {
"node": ">= 16.20"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~6.9.0",
"@typescript-eslint/parser": "~6.9.0",
"eslint": "~8.52.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-airbnb-typescript": "~17.1.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-jsdoc": "~46.8.2",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-rxjs": "~5.0.3",
"eslint-plugin-simple-import-sort": "~10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@release-it/conventional-changelog": "^7.0.2",
"@types/eslint": "^8.44.6",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.200",
"ava": "^5.3.1",
"husky": "^4.3.8",
"lodash": "^4.17.21",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"rxjs": "^7.8.1",
"ts-mockito": "^2.6.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run format && npm run lint"
}
}
}