-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "@markbattistella/docsify-charty",
"version": "3.0.0",
"description": "Add charts and graphs to your docsify website",
"main": "dist/docsify-charty.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/markbattistella/docsify-charty.git"
},
"scripts": {
"launch": "docsify serve ./docs -o",
"update": "ncu -u",
"babel": "npx babel ./dist/docsify-charty.js -o ./dist/docsify-charty.babel.js",
"uglify": "uglifyjs ./dist/docsify-charty.babel.js --verbose -c -m -o ./dist/docsify-charty.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.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"jsonfile": "^6.1.0"
},
"babel": {
"presets": [
"@babel/env"
]
},
"unpkg": "./dist/docsify-charty.min.js",
"jsdelivr": "./dist/docsify-charty.min.js",
"keywords": [
"docsify",
"plugin",
"charts",
"graphs",
"pie chart",
"line graph"
],
"author": "Mark Battistella",
"license": "MIT",
"bugs": {
"url": "https://github.com/markbattistella/docsify-charty/issues"
},
"homepage": "https://charty.docsify.markbattistella.com/"
}