-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 796 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 796 Bytes
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
{
"name": "@laboratoria/mdlint",
"version": "1.2.3",
"license": "Apache-2.0",
"repository": "Laboratoria/mdlint",
"bin": {
"mdlint": "./index.js"
},
"scripts": {
"pretest": "eslint .",
"test": "jest --verbose --coverage"
},
"author": {
"name": "Laboratoria",
"email": "sumate@laboratoria.la",
"url": "http://laboratoria.la/"
},
"contributors": [
"Lupo Montero <lupo@laboratoria.la> (https://github.com/lupomontero)"
],
"dependencies": {
"chalk": "^4.1.2",
"glob": "^7.2.0",
"markdownlint": "^0.25.1",
"minimist": "^1.2.6"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7"
},
"engines": {
"node": ">=12.x"
}
}