-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "micropub",
"version": "1.5.0",
"description": "Serverless Micropub and media endpoints to publish to static site",
"main": "src/micropub.js",
"scripts": {
"clean": "rm -rf node_modules lambda",
"serve": "export NODE_OPTIONS=--openssl-legacy-provider && netlify-lambda serve src --port 9001",
"esbuild": "esbuild src/*.js --bundle --outdir=lambda --platform=node",
"build": "netlify-lambda build src",
"bump": "npm --no-git-tag-version version",
"lint": "eslint src/**/*.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/benjifs/micropub.git"
},
"keywords": [
"indieweb",
"micropub",
"netlify",
"lambda",
"serverless"
],
"author": "Benji Encalada Mora <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjifs/micropub/issues"
},
"homepage": "https://github.com/benjifs/micropub",
"dependencies": {
"@middy/core": "^2.5.1",
"@middy/http-error-handler": "^2.5.1",
"@middy/http-json-body-parser": "^2.5.1",
"@middy/http-multipart-body-parser": "^2.5.1",
"@middy/http-urlencode-body-parser": "^2.5.1",
"article-title": "^4.1.0",
"dotenv": "^16.3.1",
"got": "^11.8.2",
"gray-matter": "^4.0.3",
"netlify-lambda": "^2.0.15"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nock": "^13.4.0"
},
"overrides": {
"cheerio": "1.0.0-rc.10"
}
}