This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.76 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
{
"name": "@lokalise/eslint-plugin",
"version": "1.5.0",
"description": "ESLint plugin for Lokalise",
"main": "index.js",
"author": "Lokalise",
"license": "MIT",
"files": [
"docs/rules",
"rules",
"index.js",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/lokalise/eslint-plugin.git"
},
"keywords": [
"eslint",
"imports",
"boundaries",
"javascript",
"typescript"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js,.cjs",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"commit": "commit"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"bugs": {
"url": "https://github.com/lokalise/eslint-plugin/issues"
},
"homepage": "https://github.com/lokalise/eslint-plugin#readme",
"dependencies": {
"eslint-module-utils": "^2.7.3",
"eslint-plugin-import": "^2.26.0",
"requireindex": "^1.2.0"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.17.12",
"@commitlint/cli": "^18.1.0",
"@commitlint/config-conventional": "^18.1.0",
"@lokalise/eslint-config-frontend": "^2.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.2",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"semantic-release": "^23.0.0"
}
}