-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.08 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.08 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
{
"name": "html-theme-web2",
"version": "1.0.0",
"description": "Tiara's HTML Reference Theme",
"author": "Tiara Rodney <t.rodney@administratrix.de>",
"engines": {
"node": ">= 20.11.0"
},
"type": "commonjs",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"autoprefixer": "^10.4.21",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"cssnano": "^7.0.6",
"eslint": "^9.25.1",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"sass": "^1.86.3",
"sass-loader": "^16.0.5",
"stylelint": "^16.18.0",
"stylelint-config-standard-scss": "^14.0.0",
"tar": "^7.4.3",
"ts-jest": "^29.3.2",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"webpack": "^5.99.6",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"overrides": {
"jest": {
"glob": "^11.0.1"
}
},
"scripts": {
".archive": "ts-node -P tsconfig.node.json scripts/bitbucket-cloud-upload.ts",
"build/debug": "webpack -c webpack.config.debug.mjs",
"build/release": "webpack",
"build/doc/script": "webpack -c webpack.config.doc.mjs --env target=script",
"build/doc/style": "webpack -c webpack.config.doc.mjs --env target=style",
"dist": "ts-node -P tsconfig.node.json scripts/npm-pack.ts",
"test-reports/lint/script": "eslint src/script --output-file test-reports/lint/script",
"test-reports/lint/style": "stylelint -c .stylelintrc.json src/style --output-file test-reports/lint/style",
"test-reports/unit/script": "jest",
".user-acceptance": "webpack serve -c webpack.config.doc.mjs --mode=development --env target=style"
},
"dependencies": {
"boxicons": "^2.1.4"
}
}