-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.87 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.87 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
{
"name": "mini-tools",
"description": "mini tools for express and others",
"version": "1.13.5",
"author": "Codenautas <codenautas@googlegroups.com>",
"license": "MIT",
"files": [
"lib"
],
"repository": "codenautas/mini-tools",
"contributors": [
{
"name": "Emilio Platzer",
"email": "emilioplatzer@gmail.com"
}
],
"dependencies": {
"js-yaml": "^4.1.1",
"pug": "^3.0.3",
"read-yaml-promise": "^1.0.2",
"send": "^1.2.1",
"stylus": "^0.64.0",
"best-globals": "^2.0.7",
"cast-error": "^0.1.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.0",
"@types/send": "^1.2.1",
"colors": "^1.4.0",
"expect.js": "^0.3.1",
"express": "^5.2.1",
"mocha": "^11.7.5",
"nyc": "^17.1.0",
"sinon": "^21.0.1",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"main": "lib/mini-tools.js",
"types": "lib/mini-tools.d.ts",
"engines": {
"node": ">= 20"
},
"scripts": {
"prepare": "tsc",
"test": "mocha --reporter spec --bail --check-leaks --exit test/",
"test-ci": "node node_modules/nyc/bin/nyc --reporter=lcov --reporter=text-lcov node_modules/mocha/bin/_mocha --exit --check-leaks test/",
"test-cov": "nyc mocha --exit test/",
"start": "node example/server.js"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"coverage",
"example",
"test"
],
"include": [
"**"
],
"reporter": [
"html",
"lcov",
"text-summary"
],
"all": true
},
"qa-control": {
"package-version": "0.3.0",
"run-in": "server",
"test-appveyor": true,
"type": "lib",
"stage": "designing",
"coverage": 100
}
}