-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
{
"name": "devops-mac-setup",
"version": "1.12.0",
"description": "",
"main": "index.js",
"devDependencies": {
"auto-version-js": "^0.3.10",
"husky": "^8.0.0",
"mega-linter-runner": "^6.14.0"
},
"scripts": {
"prepare": "husky install",
"prod": "/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/opencastsoftware/devops-mac-setup/HEAD/setup.sh)",
"dev": ". ./setup.sh",
"lint:check": "mega-linter-runner --flavor ci_light --remove-container --container-name megalinter",
"lint:fix": "mega-linter-runner --flavor ci_light --remove-container --container-name megalinter --fix",
"test": "npm run lint:check",
"release": ". ./increment_version.sh && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opencastsoftware/devops-mac-setup.git"
},
"husky": {
"hooks": {
"pre-commit": "echo \"precommit hooks\" && npm run release"
}
},
"author": "Charlie Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/opencastsoftware/devops-mac-setup/issues"
},
"homepage": "https://github.com/opencastsoftware/devops-mac-setup#readme",
"volta": {
"node": "18.12.1"
}
}