forked from equinor/witsml-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 903 Bytes
/
package.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
{
"name": "witsml-explorer-root",
"version": "1.0.0",
"private": true,
"description": "The root package.json for Witsml Explorer",
"homepage": "https://github.com/equinor/witsml-explorer#readme",
"bugs": {
"url": "https://github.com/equinor/witsml-explorer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/witsml-explorer.git"
},
"license": "Apache-2.0",
"workspaces": [
"Src/WitsmlExplorer.Frontend"
],
"scripts": {
"dotnet-format": "dotnet tool run dotnet-format --check",
"dotnet-format:fix": "dotnet tool run dotnet-format",
"eslint": "eslint . --cache",
"eslint:fix": "eslint . --cache --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{cs,vb}": [
"dotnet tool run dotnet-format --include"
]
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
}
}