-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.47 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@neteng-pro/netwk-pro-web",
"version": "0.3.7",
"private": false,
"description": "Locking Down Networks, Unlocking Confidence — Network Pro",
"keywords": [
"networking",
"security",
"privacy",
"cybersecurity",
"advisory",
"consulting"
],
"homepage": "https://netwk.pro",
"bugs": {
"url": "https://github.com/netwk-pro/netwk-pro.github.io/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netwk-pro/netwk-pro.github.io.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",
"main": "index.html",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"lint": "npx eslint && prettier --check .",
"fix": "npx eslint --fix && prettier --write .",
"clean": "rm -rf dist/* && npm update",
"ci": "rm -rf dist/* node_modules package-lock.json && npm install",
"start": "webpack serve --open --config webpack.config.dev.mjs",
"build": "webpack --config webpack.config.prod.mjs",
"prepare": "husky"
},
"dependencies": {
"astroturf": "^1.2.0",
"astroturf-loader": "^1.0.0",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.4",
"globalthis": "^1.0.4",
"normalize.css": "^8.0.1",
"postcss-cli": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^9.20.0",
"babel-loader": "^9.2.1",
"chai": "^5.2.0",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.15.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"markdownlint": "^0.37.4",
"markdownlint-cli2": "^0.17.2",
"mocha": "^11.0.1",
"postcss": "^8.5.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"style-loader": "^4.0.0",
"stylelint": "^16.14.1",
"stylelint-config-alphabetical-order": "^1.0.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^5.10.0"
}
}