-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "queue-it-poc-cloudflare-worker",
"version": "1.0.0",
"description": "A Netacea Cloudflare worker with Queue-It integration.",
"main": "./dist/index.js",
"scripts": {
"build": "webpack",
"publish": "npm run build && npx wrangler publish",
"dev": "npm run build && npx wrangler dev",
"dev:local": "npm run build && npx wrangler dev --local",
"test": "npx nyc tape -r ts-node/register './tests/*.test.ts'",
"lint": "npx eslint \"{tests,src}/**\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Netacea/queue-it-poc-cloudflare-worker.git"
},
"keywords": [
"netacea",
"queue-it",
"cloudflare"
],
"author": "Gracjan Pietruszynski <[email protected]> (https://www.netacea.com)",
"license": "UNLICENSED",
"homepage": "https://github.com/Netacea/queue-it-poc-cloudflare-worker#readme",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230511.0",
"@types/service-worker-mock": "^2.0.1",
"@types/tape": "^4.13.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.40.0",
"nyc": "^15.1.0",
"querystring-es3": "^0.2.1",
"service-worker-mock": "^2.0.5",
"stream-browserify": "^3.0.0",
"tape": "^5.6.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"url": "^0.11.0",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"wrangler": "^2.20.2"
},
"dependencies": {
"@netacea/cloudflare": "^5.1.47"
}
}