UNPKG

1.91 kBJSONView Raw
1{
2 "name": "mini-tools",
3 "description": "mini tools for express and others",
4 "version": "1.0.8",
5 "author": "Codenautas <codenautas@googlegroups.com>",
6 "license": "MIT",
7 "files": [
8 "lib"
9 ],
10 "repository": "codenautas/mini-tools",
11 "contributors": [
12 {
13 "name": "Emilio Platzer",
14 "email": "emilioplatzer@gmail.com"
15 }
16 ],
17 "dependencies": {
18 "fs-extra": "~8.0.1",
19 "js-yaml": "~3.13.1",
20 "pug": "~2.0.3",
21 "read-yaml-promise": "~1.0.2",
22 "send": "~0.17.1",
23 "stylus": "~0.54.5",
24 "best-globals": "~0.10.19"
25 },
26 "devDependencies": {
27 "@types/express": "~4.17.0",
28 "@types/fs-extra": "~7.0.0",
29 "@types/js-yaml": "~3.12.1",
30 "@types/mocha": "~5.2.7",
31 "@types/node": "~12.0.8",
32 "@types/send": "~0.14.4",
33 "colors": "~1.3.3",
34 "expect.js": "~0.3.1",
35 "express": "~4.17.1",
36 "mocha": "~6.1.4",
37 "nyc": "~14.1.1",
38 "sinon": "~7.3.2",
39 "source-map-support": "~0.5.12",
40 "supertest": "~4.0.2",
41 "ts-node": "~8.3.0",
42 "typescript": "~3.5.2"
43 },
44 "main": "lib/mini-tools.js",
45 "types": "lib/mini-tools.d.ts",
46 "engines": {
47 "node": ">= 8"
48 },
49 "scripts": {
50 "build": "tsc",
51 "test": "mocha --reporter spec --bail --check-leaks --exit test/",
52 "test-ci": "node node_modules/nyc/bin/nyc --reporter=lcov --reporter=text-lcov node_modules/mocha/bin/_mocha --exit --check-leaks test/",
53 "test-cov": "node node_modules/nyc/bin/nyc mocha --exit",
54 "start": "node example/server.js"
55 },
56 "nyc": {
57 "extension": [
58 ".ts",
59 ".tsx"
60 ],
61 "exclude": [
62 "**/*.d.ts"
63 ],
64 "include": [
65 "lib"
66 ],
67 "reporter": [
68 "html",
69 "lcov",
70 "text-summary"
71 ],
72 "all": true
73 },
74 "qa-control": {
75 "package-version": "0.3.0",
76 "run-in": "server",
77 "test-appveyor": true,
78 "type": "lib",
79 "stage": "designing",
80 "coverage": 100
81 }
82}