-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.23 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
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
{
"name": "server-listening",
"version": "1.2.4",
"description": "Simple promise to wait for server ready inside a mocha specification",
"license": "MIT",
"type": "module",
"module": "dist/server-listening.js",
"types": "dist/server-listening.d.ts",
"exports": "./dist/server-listening.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/server-listening.git"
},
"homepage": "https://github.com/center-key/server-listening",
"bugs": "https://github.com/center-key/server-listening/issues",
"docs": "https://github.com/center-key/server-listening#readme",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"javascript",
"mocha",
"promise",
"ready",
"server",
"server-listening",
"specification",
"typescript",
"wait"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"latedef": true,
"nonbsp": true,
"singleGroups": true,
"undef": true,
"unused": true,
"mocha": true,
"node": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist"
],
"lint": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0"
],
"build": [
"tsc"
],
"dist": [
"add-dist-header build dist",
"html-validator spec"
]
},
"scripts": {
"pretest": "run-scripts clean lint build dist",
"test": "mocha spec/*.spec.js --timeout 7000 --retries 1"
},
"dependencies": {
"express": "~4.21",
"http-terminator": "~3.2",
"jsdom": "~25.0"
},
"devDependencies": {
"@eslint/js": "~9.11",
"@types/express": "~5.0",
"@types/jsdom": "~21.1",
"@types/node": "~22.7",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"eslint": "~9.11",
"fetch-json": "~3.3",
"jshint": "~2.13",
"mocha": "~10.7",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.6",
"typescript-eslint": "~8.7",
"w3c-html-validator": "~1.8"
}
}