0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-25 13:19:30 +01:00
hono/package.json

21 lines
501 B
JSON
Raw Normal View History

2021-12-14 20:26:22 +01:00
{
"name": "hono",
2021-12-17 09:17:56 +01:00
"version": "0.0.3",
2021-12-14 21:05:03 +01:00
"description": "Minimal web framework for Cloudflare Workers",
"main": "src/hono.js",
2021-12-14 20:26:22 +01:00
"scripts": {
2021-12-14 20:58:45 +01:00
"test": "jest --verbose"
2021-12-14 20:26:22 +01:00
},
"author": "Yusuke Wada <yusuke@kamawada.com> (https://github.com/yusukebe)",
2021-12-14 20:58:45 +01:00
"license": "MIT",
2021-12-14 21:26:01 +01:00
"repository": {
"type": "git",
"url": "https://github.com/yusukebe/hono.git"
},
"homepage": "https://github.com/yusukebe/hono",
2021-12-14 20:58:45 +01:00
"devDependencies": {
"jest": "^27.4.5",
"node-fetch": "^2.6.6"
}
2021-12-19 22:58:33 +01:00
}