This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.87 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "recluster",
"version": "0.1.0",
"private": true,
"description": "reCluster is an architecture for a data centre that actively reduces its impact and minimizes its resource utilization",
"homepage": "https://github.com/carlocorradini/reCluster#readme",
"bugs": {
"url": "https://github.com/carlocorradini/reCluster/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlocorradini/reCluster.git"
},
"license": "MIT",
"author": {
"name": "Carlo Corradini",
"email": "[email protected]",
"url": "https://linkedin.com/in/carlo-corradini"
},
"scripts": {
"check": "npx npm-run-all --npm-path npm --serial check:* && cd server && npm run check",
"check:format": "npx prettier --check .",
"check:license": "npx license-check-and-add check -f license.json",
"check:markdown": "npx markdownlint \"**/*.md\"",
"check:spell": "npx cspell lint --config cspell.json --no-progress --show-context \"**\"",
"fix": "npx npm-run-all --npm-path npm --serial fix:* && cd server && npm run fix",
"fix:format": "npx prettier --write .",
"fix:license": "npx license-check-and-add add -f license.json",
"fix:markdown": "npx markdownlint --fix \"**/*.md\"",
"prepare": "npx husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@cspell/dict-docker": "^1.1.5",
"@cspell/dict-node": "^4.0.2",
"@cspell/dict-npm": "^5.0.3",
"@cspell/dict-shell": "^1.0.1",
"@cspell/dict-typescript": "^3.1.0",
"@cspell/eslint-plugin": "^6.26.3",
"cspell": "^6.26.1",
"husky": "^8.0.3",
"license-check-and-add": "^4.0.5",
"lint-staged": "^13.1.0",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.33.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"prettier-plugin-sh": "^0.13.1"
}
}