forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.linter.json
44 lines (44 loc) · 1.28 KB
/
package.linter.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
{
"name": "cipp",
"version": "1.3.0",
"description": "The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "swa start . --swa-config-location c:\\asdf --api-location http://localhost:7071",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/KelvinTegelaar/CIPP.git"
},
"author": "Kelvin Tegelaar",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/KelvinTegelaar/CIPP/issues"
},
"homepage": "https://github.com/KelvinTegelaar/CIPP#readme",
"engines": {
"node": "16",
"npm": ">=7"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "2.4.1"
},
"peerDependencies": {
"@azure/static-web-apps-cli": "^0.8.0",
"azure-functions-core-tools": "^3.0.3904"
},
"lint-staged": {
"*.js": "npx eslint --cache --fix",
"*.html": "npx prettier --write ."
}
}