52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "flaska",
|
|
"version": "1.4.0",
|
|
"description": "Flaska is a micro web-framework for node. It is designed to be fast, simple and lightweight, and is distributed as a single file module with no dependencies.",
|
|
"main": "flaska.mjs",
|
|
"scripts": {
|
|
"test": "eltro -r dot",
|
|
"test:watch": "eltro -r dot -w test"
|
|
},
|
|
"watch": {
|
|
"test": {
|
|
"patterns": [
|
|
"./"
|
|
],
|
|
"extensions": "mjs"
|
|
}
|
|
},
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.nfp.is/TheThing/flaska.git"
|
|
},
|
|
"keywords": [
|
|
"web",
|
|
"app",
|
|
"http",
|
|
"application",
|
|
"framework",
|
|
"middleware",
|
|
"rack"
|
|
],
|
|
"author": "Jonatan Nilsson",
|
|
"license": "WTFPL",
|
|
"bugs": {
|
|
"url": "https://git.nfp.is/TheThing/flaska/issues"
|
|
},
|
|
"homepage": "https://git.nfp.is/TheThing/flaska/#readme",
|
|
"devDependencies": {
|
|
"eltro": "^1.3.2",
|
|
"formidable": "^1.2.2"
|
|
},
|
|
"pnpm": {
|
|
"allowedDeprecatedVersions": {
|
|
"formidable": "1"
|
|
}
|
|
},
|
|
"files": [
|
|
"flaska.mjs",
|
|
"README.md",
|
|
"LICENSE"
|
|
]
|
|
}
|