-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.75 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.75 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
{
"name": "chef-core",
"version": "4.2.1",
"description": "static file server chef-js core functionalities",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"demo",
"chat.js",
"config.js",
"shim.js",
"ssl"
],
"keywords": [
"nodejs",
"javascript",
"cli",
"framework",
"typescript",
"nodejs-server",
"http-server",
"https-server"
],
"scripts": {
"docs-from-main-macos": "find docs -type f -name '*.html' -exec sed -i '' -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"docs-from-main-linux": "find docs -type f -name '*.html' -exec sed -i -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"build:docs": "typedoc",
"postbuild:docs": "yarn docs-from-main-macos || yarn docs-from-main-linux",
"prebuild": "rm -rf dist",
"build": "tsc",
"pretest": "yarn build",
"test": "jest",
"format": "prettier . --write",
"lint": "eslint src --fix",
"precommit": "yarn lint && yarn test && yarn build:docs && yarn format",
"amend": "yarn precommit && git commit -a --am --no-edit"
},
"repository": "git://github.com/chef-js/core.git",
"author": "Jacek Pietal <Prozi>",
"license": "MIT",
"private": false,
"resolutions": {
"@babel/traverse": ">=7.23.2",
"minimist": "^1.2.6",
"terser": "^5.14.2",
"json5": "^2.2.2",
"semver": "^7.5.3",
"escodegen": "^2.1.0"
},
"dependencies": {
"@pietal.dev/cache": "^2.0.2",
"mime-types": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.15.3",
"eslint": "^9.25.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"typedoc": "^0.28.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
}
}