-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.95 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@networkpro/docs",
"version": "1.1.4",
"description": "The documentation portal for Network Pro Strategies (Network Pro™)",
"keywords": [
"android",
"advisory",
"consulting",
"cybersecurity",
"docs",
"documentation",
"linux",
"networking",
"privacy",
"security"
],
"homepage": "https://docs.netwk.pro",
"bugs": {
"url": "https://github.com/netwk-pro/netwk-pro.github.io/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netwk-pro/docs.git"
},
"license": "CC-BY-4.0 OR GPL-3.0-or-later",
"author": {
"name": "Scott Lopez",
"email": "github@sl.neteng.cc",
"url": "https://bio.neteng.pro"
},
"type": "module",
"scripts": {
"dev": "mkdocs serve",
"build": "mkdocs build",
"delete": "rm -rf build node_modules package-lock.json",
"clean": "npm run delete && npm cache clean --force && npm install",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint . --ext .mjs,.js,.json,.jsonc",
"lint:fix": "eslint . --ext .mjs,.js,.json,.jsonc --fix",
"lint:md": "npx markdownlint-cli2 \"**/*.{md,markdown}\" \"#node_modules/**\" \"#build/**\"",
"lint:css": "npx stylelint \"**/*.css\" --ignore-path .stylelintignore",
"lint:all": "npm run lint && npm run lint:md && npm run format",
"checkout": "npm run lint:all",
"verify": "npm run checkout",
"upgrade": "npx npm-check-updates -u"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@eslint/json": "^0.12.0",
"autoprefixer": "^10.4.21",
"browserslist": "^4.25.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.2.0",
"markdownlint": "^0.38.0",
"markdownlint-cli2": "^0.18.1",
"postcss": "^8.5.4",
"prettier": "3.5.3",
"stylelint": "^16.20.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^16.0.0",
"stylelint-order": "^7.0.0"
}
}