-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "nexusfork",
"author": "NexusTools <contact@nexustools.com>",
"contributors": [
{
"name": "Katelyn Slater",
"email": "ktaeyln@gmail.com"
}
],
"homepage": "https://nexustools.com/",
"version": "0.5.4",
"license": "Apache-2.0",
"description": "Easily setup a cluster based http server using express and vhost.",
"keywords": [
"hosts",
"virtual",
"cluster",
"website",
"hosting",
"modular",
"NexusTools",
"express",
"vhost"
],
"bugs": {
"url": "https://github.com/NexusTools/node-nexusfork/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NexusTools/node-nexusfork.git"
},
"main": "main.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "jest --runInBand",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": [
"babel-jest",
{
"presets": [
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
]
},
"testMatch": [
"**/test/tests.ts"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$"
]
},
"dependencies": {
"async": "^3.2.6",
"express": "^5.1.0",
"lodash": "^4.17.25",
"node-paths": "^0.2.2",
"nulllogger": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/plugin-transform-modules-commonjs": "^7.28.0",
"@babel/preset-typescript": "^7.28.0",
"@types/async": "^3.2.26",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.25",
"@types/node": "^26.6.2",
"babel-jest": "^30.5.2",
"jest": "^30.5.2",
"typescript": "^7.0.2"
}
}