generated from server-state/template-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1006 Bytes
/
package.json
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": "@server-state/ufw-status-module",
"version": "0.1.6",
"description": "A module for querying the status of a UFW firewall (requires sudo privileges)",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src ./tests",
"build": "webpack --config webpack.config.js --mode production",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/server-state/ufw-status-module.git"
},
"author": "server-state",
"license": "MIT",
"bugs": {
"url": "https://github.com/server-state/ufw-status-module/issues"
},
"homepage": "https://github.com/server-state/ufw-status-module#readme",
"devDependencies": {
"@server-state/types": "^0.2.0",
"@types/jest": "^27.0.0",
"@types/node": "^17.0.4",
"coveralls": "^3.1.0",
"eslint": "^8.3.0",
"jest": "^27.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"shell-exec": "^1.0.2"
}
}