-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 925 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": "@dennis14e/node-opnsense",
"version": "0.0.5",
"description": "Node OPNsense API",
"main": "src/index.js",
"scripts": {
"jsdoc": "jsdoc ./src -d ./docs",
"lint": "eslint ./src",
"openapi": "swagger-jsdoc -d ./openapi/specification.js -o ./openapi/openapi.json ./src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dennis14e/node-opnsense.git"
},
"keywords": [
"opnsense",
"api"
],
"author": "Dennis Neufeld <git@dneufeld.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dennis14e/node-opnsense/issues"
},
"homepage": "https://github.com/Dennis14e/node-opnsense#readme",
"devDependencies": {
"eslint": "^9.21.0",
"eslint-plugin-jsdoc": "^50.6.3",
"jsdoc": "^4.0.4",
"swagger-jsdoc": "^6.2.8"
},
"engines": {
"node": ">=12"
}
}