forked from beeman/micro-unfurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 858 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
{
"name": "@beeman/micro-unfurl",
"version": "1.0.1",
"description": "Small microservice that unfurls a URL and returns the OpenGraph meta data",
"main": "index.js",
"private": false,
"repository": "beeman/micro-unfurl",
"scripts": {
"start": "micro",
"test": "echo \"Error: no test specified\" && exit 1",
"now:deploy": "now",
"now:alias": "now alias",
"now": "npm run now:deploy && npm run now:alias"
},
"keywords": [
"micro",
"zeit",
"micro service",
"unfurl",
"open graph",
"opengraph",
"ogp"
],
"author": "Bram Borggreve (github:beeman twitter:beeman_nl)",
"license": "MIT",
"dependencies": {
"micro": "^7.3.3",
"microrouter": "^2.1.0",
"unfurl.js": "^1.1.7"
},
"now": {
"name": "micro-unfurl",
"alias": [
"micro-unfurl",
"unfurl"
]
}
}