-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 941 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
40
41
42
43
44
45
{
"name": "first-x",
"version": "0.1.0",
"description": "Utility to extract the content of the first occurence of element x from HTML or Markdown",
"main": "index.js",
"scripts": {
"version": "git add --all",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webmasterish/first-x.git"
},
"keywords": [
"html",
"markdown",
"regex",
"utility",
"extract",
"content",
"paragraph",
"image",
"header",
"blockquote"
],
"author": {
"name": "webmasterish",
"email": "webmasterish@gmail.com",
"url": "https://webmasterish.com"
},
"license": "MIT",
"homepage": "https://github.com/webmasterish/first-x",
"bugs": {
"url": "https://github.com/webmasterish/first-x/issues"
},
"engines": {
"node": ">=8"
},
"files": [
"lib",
"index.js",
"README.md",
"LICENSE"
]
}