-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "html-console-output",
"version": "0.8.5",
"description": "Fancy html-based Javascript console output window",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-prod": "webpack --config webpack.config-prod.js",
"build": "webpack",
"dev": "webpack-dev-server",
"prepack": "npm install && npm run build-prod"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/karimayachi/html-console-output.git"
},
"keywords": [
"jsfiddle",
"javascript-console",
"logging",
"console",
"output"
],
"author": "Karim Ayachi",
"license": "ISC",
"bugs": {
"url": "https://github.com/karimayachi/html-console-output/issues"
},
"homepage": "https://github.com/karimayachi/html-console-output#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1"
}
}