2020-03-11 12:34:34 +00:00
{
2021-10-10 02:30:23 +00:00
"name" : "flaska" ,
2022-06-16 09:59:30 +00:00
"version" : "1.2.5" ,
2020-05-20 13:14:25 +00:00
"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" ,
2020-03-11 12:34:34 +00:00
"scripts" : {
2022-03-16 10:41:25 +00:00
"test" : "eltro" ,
"test:watch" : "npm-watch test"
} ,
"watch" : {
"test" : {
"patterns" : [
"test/*" ,
"flaska.mjs"
] ,
"extensions" : "mjs" ,
"quiet" : true ,
"inherit" : true
}
2020-03-11 12:34:34 +00:00
} ,
"type" : "module" ,
"repository" : {
"type" : "git" ,
2022-03-17 15:09:22 +00:00
"url" : "git+https://git.nfp.is/TheThing/flaska.git"
2020-03-11 12:34:34 +00:00
} ,
2021-10-10 02:26:06 +00:00
"keywords" : [
"web" ,
"app" ,
"http" ,
"application" ,
"framework" ,
"middleware" ,
"rack"
] ,
"author" : "Jonatan Nilsson" ,
2020-03-11 12:34:34 +00:00
"license" : "WTFPL" ,
"bugs" : {
2022-03-17 15:09:22 +00:00
"url" : "https://git.nfp.is/TheThing/flaska/issues"
2020-03-11 12:34:34 +00:00
} ,
2022-03-17 15:09:22 +00:00
"homepage" : "https://git.nfp.is/TheThing/flaska/#readme" ,
2020-05-20 13:14:25 +00:00
"devDependencies" : {
2022-07-04 13:24:19 +00:00
"eltro" : "^1.3.2" ,
2022-03-16 10:41:25 +00:00
"formidable" : "^1.2.2"
2021-10-10 02:26:06 +00:00
} ,
"files" : [
"flaska.mjs" ,
"README.md" ,
"LICENSE"
]
2020-03-11 12:34:34 +00:00
}