-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "webhook2github",
"private": true,
"version": "1.0.1",
"description": "Cloudflare worker TypeScript template",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"start": "wrangler dev",
"log": "wrangler tail",
"deploy": "wrangler publish",
"deploy:production": "npm run deploy -- --env production",
"postdeploy:production": "npm run release",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
"transpile": "tsc --project ./test",
"release": "release-it"
},
"author": "author",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@cloudflare/workers-types": "^2.0.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"release-it": "^14.0.3",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@types/vary": "^1.1.0",
"chalk": "^4.1.0",
"loglevel": "^1.7.0",
"loglevel-plugin-prefix": "^0.8.4",
"path-to-regexp": "^6.2.0",
"vary": "^1.1.2"
}
}