-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name": "workers-webmention-server",
"version": "1.1.0",
"description": "Webmention server on Cloudflare Workers.",
"main": "dist/worker.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"publish": "wrangler publish",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"test": "TS_NODE_FILES=true mocha --require ts-node/register src/**/*.spec.ts"
},
"author": "Outvi V <oss+npm@outv.im>",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@cloudflare/workers-types": "^2.0.0",
"@types/chai": "^4.2.11",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.5",
"ts-node": "^9.1.1",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"minimatch": "^3.0.4"
}
}