-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 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
39
40
41
{
"name": "bash-scripts",
"version": "1.0.0",
"description": "Some Utility Bash Scripts",
"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",
"license": "license-check-and-add add -f ./licenseConfig.json",
"build": "node index"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/WhackDevelopment/bash-scripts.git"
},
"keywords": [
"bash",
"scripts",
"utility",
"screen",
"linux",
"ubuntu",
"arch"
],
"author": "whackdevelopment.com",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/WhackDevelopment/bash-scripts/issues"
},
"homepage": "https://github.com/WhackDevelopment/bash-scripts#readme",
"devDependencies": {
"license-check-and-add": "^4.0.5",
"prettier": "^2.8.7",
"prettier-plugin-sh": "^0.12.8"
},
"dependencies": {
"bash-minifier": "^0.1.3"
}
}