-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
30 lines (30 loc) · 928 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
{
"name": "docsify-glossary",
"version": "0.0.1",
"description": "A simple glossary plugin for docsify",
"main": "src",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack src/index.js -o dist/docsify-glossary.js --mode=development && webpack src/index.js -o example/docsify-glossary.js --mode=development",
"build:prod": "webpack src/index.js -o dist/docsify-glossary.min.js --mode=production"
},
"files": [
"src",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TheGreenToaster/docsify-glossary.git"
},
"author": "TheGreenToaster",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheGreenToaster/docsify-glossary/issues"
},
"homepage": "https://github.com/TheGreenToaster/docsify-glossary#readme",
"devDependencies": {
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
}
}