-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 919 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
{
"name": "url-extractor",
"description": "Extract URLs from a string, markdown or HTML document.",
"keywords": [
"url",
"extract",
"markdown",
"html"
],
"version": "3.0.0",
"main": "./dist/index.js",
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/url-extractor"
},
"license": "BSD-3-Clause",
"scripts": {
"lint": "pragmatist --type-assertions lint",
"test": "pragmatist --type-assertions test",
"build": "pragmatist --es5 build",
"watch-lint": "pragmatist --type-assertions watch-lint",
"watch-test": "pragmatist --type-assertions watch-test",
"watch-build": "pragmatist --es5 watch-build"
},
"devDependencies": {
"chai": "^3.5.0",
"pragmatist": "^3.0.21"
},
"dependencies": {
"marked": "^0.3.5"
}
}