-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "docsify-pseudocode",
"author": "Hunter Hwang",
"version": "0.1.0",
"license": "MIT",
"homepage": "https://h-hg.github.io/docsify-pseudocode",
"description": "A docsify plugin to render pseudocode",
"keywords": [
"docsify",
"pseudocode",
"algorithmic",
"latex"
],
"repository": {
"type": "git",
"url": "git+https://github.com/h-hg/docsify-pseudocode.git"
},
"bugs": {
"url": "https://github.com/h-hg/docsify-pseudocode/issues"
},
"jsdelivr": "https://cdn.jsdelivr.net/gh/h-hg/docsify-pseudocode/dist/docsify-pseudocode.min.js",
"unpkg": "dist/docsify-pseudocode.min.js",
"files": [
"README.md",
"LICENSE",
"src/",
"dist/"
],
"scripts": {
"build-dev": "parcel build src/index.js --out-file docsify-pseudocode.js --no-minify",
"build-prod": "parcel build src/index.js --out-file docsify-pseudocode.min.js --no-source-maps",
"build": "npm run build-dev && npm run build-prod",
"docs": "npm run build && docsify serve docs/ --open",
"fix": "eslint --fix src/*.js",
"test": "echo 'No test to run'"
},
"devDependencies": {
"docsify-cli": "^4.4.2",
"eslint": "^7.16.0",
"eslint-config-google": "^0.14.0",
"parcel-bundler": "^1.12.4"
}
}