-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 964 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 964 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
{
"name": "@la-ots/eslint-config",
"version": "1.0.1",
"description": "Standard ESlint configuration for Louisiana's Office of Technology Services",
"author": "Louisiana Office of Technology Services",
"license": "CC0-1.0",
"repository": "github:la-ots/eslint-config",
"bugs": "https://github.com/la-ots/eslint-config/issues",
"homepage": "https://github.com/la-ots/eslint-config",
"keywords": [
"eslintconfig",
"eslint-config",
"eslint",
"la-ots",
"laots"
],
"main": "index.js",
"scripts": {
"lint:js": "eslint **/*.js",
"lint:js:fix": "eslint **/*.js --fix",
"format:check": "prettier --check .",
"format": "prettier --write --ignore-unknown ."
},
"peerDependencies": {
"eslint": ">= 7"
},
"dependencies": {
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0"
},
"devDependencies": {
"@la-ots/prettier-config": "^1.0.0"
}
}