2020-03-11 12:34:34 +00:00
{
2021-10-10 02:30:23 +00:00
"name" : "flaska" ,
2022-03-16 10:41:25 +00:00
"version" : "0.9.9" ,
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" ,
"url" : "git+https://github.com/nfp-projects/bottle-node.git"
} ,
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" : {
"url" : "https://github.com/nfp-projects/bottle-node/issues"
} ,
2020-05-20 13:14:25 +00:00
"homepage" : "https://github.com/nfp-projects/bottle-node#readme" ,
"devDependencies" : {
2022-03-16 10:41:25 +00:00
"eltro" : "^1.3.1" ,
"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
}