-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.87 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
{
"name": "mini-tools",
"description": "mini tools for express and others",
"version": "1.13.2",
"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.0",
"pug": "^3.0.3",
"read-yaml-promise": "^1.0.2",
"send": "^1.1.0",
"stylus": "^0.64.0",
"best-globals": "^1.1.6",
"cast-error": "^0.1.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/send": "~0.17.4",
"colors": "^1.4.0",
"expect.js": "~0.3.1",
"express": "^4.21.2",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"source-map-support": "~0.5.21",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.7.2"
},
"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
}
}