-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 934 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 934 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": "cc-openroaming-provisioning-web",
"description": "Openroaming Provisioning Web",
"private": true,
"main": "",
"scripts": {
"eslint:check": "eslint assets/controllers/",
"prettier:check": "prettier --check assets/controllers/",
"prettier:write": "prettier --write assets/controllers/"
},
"repository": {
"type": "git",
"url": "git@git.tetrapi.pt:tcs/cc/cc-openroaming-provisioning-web.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.37.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"prettier-plugin-sh": "^0.18.0",
"prettier-plugin-toml": "^2.0.6"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"plugins": [
"prettier-plugin-sh",
"prettier-plugin-toml"
]
}
}