-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "@mia-platform/eslint-config-mia",
"version": "3.0.0",
"description": "Mia-Platform javascript lint rules",
"keyword": [
"mia-platform",
"eslint-config",
"linter-config",
"ecmascript",
"es2018",
"es2019",
"es2020",
"javascript",
"nodejs",
"style-guide",
"development"
],
"homepage": "https://www.mia-platform.eu/",
"bugs": {
"url": "https://github.com/mia-platform/eslint-config-mia/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Mia Platform Core Team <[email protected]>",
"contributors": [
"Davide Tantillo <[email protected]>",
"Tommaso Allevi <[email protected]>",
"Jacopo Andrea Giola <[email protected]>"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mia-platform/eslint-config-mia.git"
},
"scripts": {
"checkonly": "! grep -R '\\.only' tests/",
"lint": "eslint . --config=eslintrc.json --ignore-path .gitignore",
"start": "echo 'unable to start the library directly' && exit 1",
"test": "npm run lint && npm run unit && npm run checkonly",
"unit": "tap --no-esm -b -o tap.log tests/*.test.js",
"version": "./scripts/update-version.sh ${npm_package_version} && git add CHANGELOG.md"
},
"devDependencies": {
"eslint": "^6.8.0",
"tap": "^14.10.6"
},
"peerDependencies": {
"eslint": ">=6.8.0",
"eslint-plugin-import": ">=2.0.0"
},
"engines": {
"node": ">=10"
}
}