-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 972 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
35
{
"name": "random-mdn-serverless",
"version": "1.0.0",
"description": "Serverless functions tweeting/sending/... random MDN articles",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"dev": "serverless invoke local --function tweet",
"deploy": "serverless deploy --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/random-mdn/random-mdn-serverless.git"
},
"keywords": [],
"author": "stefan judis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/random-mdn/random-mdn-serverless/issues"
},
"homepage": "https://github.com/random-mdn/random-mdn-serverless#readme",
"dependencies": {
"decode-html": "^2.0.0",
"got": "^11.8.1",
"html-entities": "^1.2.1",
"serverless": "^2.23.0",
"twit": "^2.2.11"
},
"devDependencies": {
"@vitest/ui": "^0.21.1",
"vite": "^3.0.7",
"vitest": "^0.21.1"
}
}