-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "express-flare",
"version": "1.4.23",
"main": "src/index.js",
"description": "A lightweight wrapper inspired by expressjs that simplifies working with Cloudflare workers.",
"keywords": [
"cloudflare",
"workers",
"express",
"expressjs",
"middleware",
"caching",
"serverless",
"API",
"router"
],
"author": "Powermikee",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/powermikee/express-flare.git"
},
"bugs": {
"url": "https://github.com/powermikee/express-flare/issues"
},
"homepage": "https://github.com/powermikee/express-flare#readme",
"scripts": {
"tsc": "tsc --project './tsconfig.json'",
"lint": "eslint src/",
"release_patch": "npm version patch",
"release_minor": "npm version minor",
"release_major": "npm version major",
"preversion": "npm run lint && npm run tsc",
"postversion": "git push && git push --tags && npm publish",
"build": "webpack",
"start_test_server": "miniflare --watch --build-base-path \"tests/dist\" --build-command \"npm run build\" --build-watch-path \"./tests/dist\" tests/dist/worker.js",
"test": "jest",
"start_and_test": "start-server-and-test start_test_server http://localhost:8787 test"
},
"dependencies": {
"@types/cookie": "^0.4.1",
"cookie": "^0.4.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"axios": "^0.26.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"jest": "^27.5.1",
"miniflare": "^2.3.0",
"start-server-and-test": "^1.14.0",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}