-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 KB
/
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
46
47
48
49
50
51
52
53
{
"name": "@markbattistella/docsify-sidebarfooter",
"version": "5.0.7",
"description": "Add a footer notice for Docsify.js",
"main": "./dist/docsify-sidebar.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/markbattistella/docsify-sidebar-footer.git"
},
"scripts": {
"launch": "docsify serve ./docs -o",
"update": "ncu -u && npm update && npm install",
"babel": "npx babel ./docs/dist/docsify-sidebar.js -o ./docs/dist/docsify-sidebar.babel.js",
"uglify": "uglifyjs ./docs/dist/docsify-sidebar.babel.js --verbose -c -m -o ./docs/dist/docsify-sidebar.min.js",
"minify": "npm run babel && npm run uglify",
"patch": "node ./.github/scripts/release.js -patch",
"minor": "node ./.github/scripts/release.js -minor",
"major": "node ./.github/scripts/release.js -major"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"docsify-cli": "^4.4.4",
"jsonfile": "^6.1.0"
},
"babel": {
"presets": [
"@babel/env"
]
},
"unpkg": "./dist/docsify-sidebar.min.js",
"jsdelivr": "./dist/docsify-sidebar.min.js",
"keywords": [
"footer",
"copyright",
"privacy policy",
"terms of service",
"terms and conditions",
"terms",
"policy",
"cookie",
"cookie policy",
"docsify",
"docsify plugin"
],
"author": "Mark Battistella",
"license": "MIT",
"bugs": {
"url": "https://github.com/markbattistella/docsify-sidebar-footer/issues"
},
"homepage": "https://footer.docsify.markbattistella.com"
}