This repository was archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
75 lines (75 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "marlint",
"version": "7.0.1",
"description": "Javascript code linter for traveloka js styleguide",
"license": "MIT",
"repository": "traveloka/javascript",
"author": {
"name": "Traveloka",
"url": "traveloka.com"
},
"bin": "cli.js",
"files": [
"*.js",
"lib"
],
"keywords": [
"cli-app",
"cli",
"marlint",
"code",
"quality",
"style",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"code style",
"standard",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint",
"simple"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"arrify": "^1.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-marlint": "^7.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-json": "^2.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-marlint": "^1.0.0-alpha.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"globby": "^11.0.1",
"jest-worker": "^26.6.2",
"lodash.merge": "^4.6.2",
"meow": "^3.7.0",
"micromatch": "^4.0.2",
"pkg-conf": "^2.1.0",
"typescript": "^4.1.3",
"update-notifier": "^2.5.0"
},
"marlint": {
"rules": {
"no-console": 0,
"no-empty": 0,
"no-sync": 0
}
}
}