-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.22 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
50
51
52
53
54
55
56
57
{
"name": "chef-core",
"version": "3.3.2",
"description": "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": {
"prebuild": "rm -rf dist",
"build": "tsc",
"build:docs": "typedoc --customCss typedoc.css",
"test": "jest",
"precommit": "yarn build && yarn build:docs && prettier . --write"
},
"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",
"express": "^4.19.2"
},
"dependencies": {
"@pietal.dev/cache": "^2.0.2",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^22.5.4",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
}
}