-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@bartificer/linkify",
"version": "3.1.1",
"description": "An MIT-licensed command line app and ES6 Javascript module for generating enriched links in any format from a URL.",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"src",
"bin",
"docs",
"examples"
],
"bin": {
"linkify": "./bin/cli.mjs"
},
"scripts": {
"build": "webpack",
"docs": "docDir='./docs'; [[ -e \"$docDir\" ]] && rm -rf \"$docDir/\"*; npx jsdoc -c ./jsdoc.conf.json",
"docs-dev": "docDir='./docs-dev'; [[ -e \"$docDir\" ]] && rm -rf \"$docDir/\"*; npx jsdoc -c ./jsdoc.conf.json --private --destination \"$docDir/\"",
"release": "npm run build && npm run docs && npm login && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartificer/linkify.git"
},
"author": "Bartificer Creations Ltd. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartificer/linkify/issues"
},
"homepage": "https://github.com/bartificer/linkify#readme",
"dependencies": {
"cheerio": "^1.0.0",
"clipboardy": "^5.3.1",
"commander": "^14.0.3",
"kleur": "^4.1.5",
"mustache": "^4.2.0",
"node-fetch": "^3.3.2",
"title-case": "^4.3.2",
"urijs": "^1.19.10",
"url-slug": "^5.0.0"
},
"devDependencies": {
"clean-jsdoc-theme": "^4.3.0",
"docdash": "^2.0.2",
"jsdoc": "^4.0.5",
"marked": "^18.0.0",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
}
}