Skip to content

Commit 54da5fb

Browse files
committed
update package.json
* remove "themes" from "files" as it is a subfolder of "src" * reorder elements * update dependencies * update devDependencies * make author a dictionary
1 parent d57b80e commit 54da5fb

File tree

1 file changed

+32
-29
lines changed

1 file changed

+32
-29
lines changed

package.json

Lines changed: 32 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,51 +2,54 @@
22
"name": "docsify",
33
"version": "3.4.2",
44
"description": "A magical documentation generator.",
5+
"author": {
6+
"name": "qingwei-li",
7+
"email": "[email protected]",
8+
"url": "https://github.com/QingWei-Li"
9+
},
10+
"homepage": "https://docsify.js.org",
11+
"license": "MIT",
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/QingWei-Li/docsify.git"
15+
},
516
"main": "lib/docsify.js",
617
"files": [
718
"lib",
8-
"src",
9-
"themes"
19+
"src"
1020
],
1121
"scripts": {
1222
"build": "rm -rf lib themes && node build/build.js && mkdir lib/themes && mkdir themes && node build/build-css.js",
1323
"dev:build": "rm -rf lib themes && mkdir themes && node build/build.js --dev && node build/build-css.js --dev",
1424
"dev": "node app.js & nodemon -w src -e js,css --exec 'npm run dev:build'",
1525
"test": "eslint src"
1626
},
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/QingWei-Li/docsify.git"
27+
"dependencies": {
28+
"marked": "^0.3.6",
29+
"prismjs": "^1.6.0",
30+
"zoom-image": "^0.1.4"
2031
},
21-
"keywords": [
22-
"doc",
23-
"docs",
24-
"documentation",
25-
"creator",
26-
"generator"
27-
],
28-
"author": "qingwei-li <[email protected]> (https://github.com/QingWei-Li)",
29-
"homepage": "https://docsify.js.org",
30-
"license": "MIT",
3132
"devDependencies": {
32-
"cssnano": "^3.8.1",
33-
"eslint": "^3.10.2",
34-
"eslint-config-vue": "^2.0.1",
35-
"eslint-plugin-vue": "^1.0.0",
33+
"cssnano": "^3.10.0",
34+
"eslint": "^3.17.1",
35+
"eslint-config-vue": "^2.0.2",
36+
"eslint-plugin-vue": "^2.0.1",
3637
"nodemon": "^1.11.0",
37-
"postcss": "^5.2.6",
38-
"postcss-salad": "^1.0.5",
39-
"rollup": "^0.41.1",
38+
"postcss": "^5.2.16",
39+
"postcss-salad": "^1.0.8",
40+
"rollup": "^0.41.5",
4041
"rollup-plugin-buble": "^0.15.0",
41-
"rollup-plugin-commonjs": "^7.0.0",
42+
"rollup-plugin-commonjs": "^8.0.2",
4243
"rollup-plugin-node-resolve": "^2.0.0",
4344
"rollup-plugin-string": "^2.0.2",
4445
"rollup-plugin-uglify": "^1.0.1",
45-
"serve-static": "^1.11.1"
46+
"serve-static": "^1.12.1"
4647
},
47-
"dependencies": {
48-
"marked": "^0.3.6",
49-
"prismjs": "^1.5.1",
50-
"zoom-image": "^0.1.4"
51-
}
48+
"keywords": [
49+
"doc",
50+
"docs",
51+
"documentation",
52+
"creator",
53+
"generator"
54+
]
5255
}

0 commit comments

Comments
 (0)