-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.11 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
{
"name": "merlee.js",
"version": "0.0.8",
"description": "a minimal node.js api framework",
"main": "./dist/merlee.js",
"module": "./dist/merlee.mjs",
"types": "./dist/merlee.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src",
"build": "tsup",
"link": "npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mwelwankuta/merlee.js.git"
},
"bugs": {
"url": "https://github.com/mwelwankuta/merlee.js/issues"
},
"keywords": [
"nodejs",
"framework",
"api",
"server"
],
"publishConfig": {
"access": "public",
"branches": [
"main"
]
},
"homepage": "https://github.com/mwelwankuta/merlee.js#readme",
"author": "Mwelwa Nkuta",
"license": "MIT",
"dependencies": {
"ejs": "^3.1.7",
"morgan": "^1.10.0",
"parseurl": "^1.3.3"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.7",
"@types/parseurl": "^1.3.3",
"eslint": "^8.5.0",
"eslint-config-google": "^0.14.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}