-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 924 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 924 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
{
"name": "github-actions",
"version": "0.1.0",
"description": "GitHub re-usable Actions & Workflows",
"main": "index.js",
"scripts": {
"_prettier": "prettier .",
"prettier:write": "npm run _prettier -- --write",
"prettier:check": "npm run _prettier -- --check",
"lint": "npm run prettier:check",
"format": "npm run prettier:write",
"postformat": "npm run lint",
"style": "npm run format",
"pretest": "npm run lint",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/percebus/github-actions.git"
},
"keywords": [
"GitHub",
"actions",
"workflows"
],
"author": "JCystems",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/percebus/github-actions/issues"
},
"homepage": "https://github.com/percebus/github-actions#readme",
"devDependencies": {
"prettier": "^3.6.2"
}
}