-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "@mobilabsolutions/eslint-config",
"version": "1.0.0",
"description": "eslint configuration for Mobilab Solutions projects",
"scripts": {
"release": "lerna publish --conventional-commits",
"bootstrap": "lerna bootstrap",
"test": "echo test",
"test-all": "lerna run test"
},
"author": "João Henriques <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:mobilabsolutions/eslint-config.git"
},
"license": "MIT",
"dependencies": {
"babel-eslint": "10.1.0"
},
"devDependencies": {
"eslint": "7.13.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"lerna": "3.22.1",
"prettier": "2.1.2"
},
"peerDependencies": {
"eslint": "^4.19.1 || ^5.0.0 || ^6.5.1 || ^7.2.0 || || ^8.2.0",
"prettier": "^1.13.7 || ^2.1.2"
},
"keywords": [
"code checker",
"code linter",
"code standards",
"code style",
"eslint-config",
"eslint",
"eslintconfig",
"lint",
"style checker",
"style linter"
],
"engines": {
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
}
}