-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
39
{
"name": "@uniport/workflows",
"version": "1.0.0",
"description": "Reusable workflows and composite actions to avoid duplicating the content of workflows",
"license": "UNLICENSED",
"author": "Peter Siska <psiska@inventage.com>",
"homepage": "https://github.com/uniport/workflows#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/uniport/workflows.git"
},
"bugs": {
"url": "https://github.com/uniport/workflows/issues"
},
"main": "index.js",
"scripts": {
"format": "run-p -l format:*",
"format:prettier": "prettier \"**/*.{js,cjs,mjs,md,yml,yaml}\" --write",
"format:prettier-package-json": "npx prettier-package-json --write package.json",
"lint": "run-p -l lint:*",
"lint:prettier": "prettier \"**/*.{js,cjs,mjs,md,yml,yaml}\" --check",
"prepare": "husky",
"test": "exit 1"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2"
},
"keywords": [
"actions",
"github",
"workflows"
],
"lint-staged": {
"*.{md,yml,yaml}": "prettier --write"
}
}