-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 977 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
36
37
38
39
{
"private": true,
"name": "readme-guestbook",
"description": "A tiny web app that turns a README into a guestbook",
"main": "index.js",
"scripts": {
"start": "vercel dev",
"test": "jest --coverage && standard",
"deploy": "vercel --public --prod && vercel alias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonEtco/readme-guestbook.git"
},
"author": "Jason Etcovitch <jasonetco@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonEtco/readme-guestbook/issues"
},
"homepage": "https://github.com/JasonEtco/readme-guestbook#readme",
"dependencies": {
"@octokit/rest": "^17.9.2",
"date-fns": "^2.12.0",
"sanitize-html": "^1.24.0"
},
"devDependencies": {
"@types/sanitize-html": "^1.23.0",
"@vercel/node": "^1.6.1",
"standard": "^14.3.3",
"vercel": "^19.0.1"
},
"standard": {
"env": [
"jest",
"browser",
"firebase"
]
}
}