-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "eslint-config-scality",
"version": "8.3.0",
"description": "ESLint config for Scality's Node.js coding guidelines",
"bin": {
"mdlint": "./bin/mdlint.js"
},
"main": "index.js",
"scripts": {
"test": "yarn run --silent lint && yarn run --silent lint_md",
"lint": "eslint -c eslint.config.cjs $(git ls-files '*.js')",
"lint_md": "node bin/mdlint.js $(git ls-files '*.md')"
},
"repository": {
"type": "git",
"url": "https://github.com/scality/Guidelines"
},
"dependencies": {
"commander": "11.1.0",
"markdownlint": "0.31.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-mocha": "^10.5.0"
},
"devDependencies": {
"eslint": "^9.9.1"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"airbnb",
"scality",
"javascript",
"markdown",
"styleguide"
],
"author": "Giorgio Regni",
"license": "Apache-2.0",
"homepage": "https://github.com/scality/Guidelines",
"engines": {
"node": ">=20"
}
}