flaska/package.json

38 lines
853 B
JSON
Raw Normal View History

{
2021-10-10 02:30:23 +00:00
"name": "flaska",
2022-01-05 14:06:36 +00:00
"version": "0.9.8",
"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"
},
"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",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/nfp-projects/bottle-node/issues"
},
"homepage": "https://github.com/nfp-projects/bottle-node#readme",
"devDependencies": {
"eltro": "^1.1.0"
2021-10-10 02:26:06 +00:00
},
"files": [
"flaska.mjs",
"README.md",
"LICENSE"
]
}