-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "mini-express-server",
"version": "1.1.7",
"description": "A short implementation of a web server based in express architecture using build-in node modules",
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"dev": "rm -rf ./build && tsc -w -p ./configs/tsconfig.cjs.json",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv build/esm/index.js build/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"clean": "rm -rf ./build",
"lint": "eslint --init",
"test": "jest --detectOpenHandles",
"coverage": "jest --coverage --detectOpenHandles",
"release": "npm run build && npm run test && npm publish"
},
"keywords": [
"mini-express",
"framework",
"example"
],
"author": "Jose Alejandro Concepcion Alvarez",
"license": "MIT",
"devDependencies": {
"@fastify/express": "^2.3.0",
"@types/express": "^4.17.16",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"eslint": "^8.33.0",
"express": "^4.18.2",
"fastify": "^4.12.0",
"helmet": "^6.0.1",
"jest": "^29.4.1",
"mini-express-server": "file:mini-express-server-1.1.6.tgz",
"morgan": "^1.10.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"exports": {
".": {
"import": {
"types": "./build/esm/types/index.d.ts",
"default": "./build/esm/index.mjs"
},
"require": {
"types": "./build/cjs/types/index.d.ts",
"default": "./build/cjs/index.js"
}
}
},
"main": "./build/cjs/index.js",
"types": "./build/cjs/types/index.d.ts",
"files": [
"build/**/*"
],
"dependencies": {
"mime-types": "^2.1.35"
},
"homepage": "https://github.com/josealejandro2928/mini-express-library#readme",
"bugs": {
"url": "https://github.com/josealejandro2928/mini-express-library/issues"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/josealejandro2928/mini-express-library.git"
}
}