-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "@softboxlab/eslint-config-gandalf-lint",
"version": "1.5.2",
"description": "Your bad code shall not pass",
"main": "index.js",
"scripts": {
"test": "echo 'tested'",
"release:tags": "git push && git push --tags",
"release:patch": "npm version patch && npm run release:tags",
"release:minor": "npm version minor && npm run release:tags",
"release:major": "npm version major && npm run release:tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftboxLab/gandalf-lint.git"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript",
"lint",
"js",
"frontend",
"web",
"styleguide",
"es6",
"es2015",
"es2016",
"es2017",
"es2018"
],
"author": "Pablo Henrique Penha Silva <pablohpsilva@gmail.com>",
"contributors": [
"Lucas Vilaboim <lucas@vilaboim.com> (https://vilaboim.com)",
"Marlon Maxwel <marlonmleite@gmail.com>",
"Victor Maestri <victormaestri.f@gmail.com>",
"Rafael Lincoln <rafalincolnpa@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftboxLab/gandalf-lint/issues"
},
"homepage": "https://github.com/SoftboxLab/gandalf-lint#readme",
"directories": {
"test": "test"
},
"dependencies": {
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0"
},
"peerDependencies": {
"eslint": "^5.12.0 || ^5.16.0 || ^6.8.0 || ^7.22.0 || ^8.8.0"
}
}