0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-29 01:32:12 +01:00
hono/package.json

24 lines
581 B
JSON
Raw Normal View History

2021-12-14 20:26:22 +01:00
{
"name": "hono",
2021-12-14 21:26:01 +01:00
"version": "0.0.2",
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-15 03:41:28 +01:00
},
"dependencies": {
"global": "^4.4.0",
"wrangler": "^0.0.0-beta.6"
2021-12-14 20:58:45 +01:00
}
2021-12-17 07:31:08 +01:00
}