-
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) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 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": "httpconfig",
"version": "1.0.4",
"description": "ifconfig, but for the web, sort of",
"main": "dist/httpconfig.js",
"engines": {
"node": "24.14.0"
},
"dependencies": {
"compression": "^1.8.1",
"express": "^4.22.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.0",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"chai": "^6.2.2",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"normalize.css": "^8.0.1",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.0.0"
},
"scripts": {
"build": "npm run build:css && npm run build:server && npm run build:client",
"build:css": "sass static/scss/httpconfig.scss static/css/httpconfig.css --no-source-map --load-path=node_modules",
"build:server": "tsc",
"build:client": "tsc --project tsconfig.frontend.json",
"format": "prettier --write \"**/*.{ts,js,scss,html}\"",
"format:check": "prettier --check \"**/*.{ts,js,scss,html}\"",
"lint": "eslint \"**/*.ts\"",
"start": "tsx httpconfig.ts",
"test": "mocha",
"prepare": "[ -d .git ] && husky || true"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/greg5green/httpconfig.git"
},
"author": "greggreen@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/greg5green/httpconfig/issues"
},
"homepage": "https://github.com/greg5green/httpconfig#readme"
}