-
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.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 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": "useful-scripts",
"version": "1.0.0",
"description": "Useful bash scripts for various actions and tasks.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "npx prettier --write .",
"prettier": "npx prettier --write .",
"licenseCheck": "license-check-and-add check -f ./licenseConfig.json",
"licenseFormat": "license-check-and-add add -f ./licenseConfig.json",
"build": "node index",
"buildMin": "node index --minify"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IzanagiCraft/useful-scripts.git"
},
"keywords": [
"bash",
"scripts",
"cli-tools",
"cli",
"batch"
],
"author": "sanguine6660",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/IzanagiCraft/useful-scripts/issues"
},
"homepage": "https://github.com/IzanagiCraft/useful-scripts#readme",
"devDependencies": {
"bash-minifier": "^0.1.3",
"license-check-and-add": "^4.0.5",
"prettier": "^3.1.1",
"prettier-plugin-sh": "^0.13.1"
}
}