forked from jhildenbiddle/docsify-themeable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "docsify-themeable",
"version": "0.7.2",
"description": "A delightfully simple theme system for docsify.js. Features multiple themes with rich customization options, an improved desktop and mobile experience, and legacy browser support (IE10+).",
"author": "John Hildenbiddle",
"license": "MIT",
"homepage": "https://jhildenbiddle.github.io/docsify-themeable/",
"repository": {
"type": "git",
"url": "git+https://[email protected]/jhildenbiddle/docsify-themeable.git"
},
"bugs": {
"url": "https://github.com/jhildenbiddle/docsify-themeable/issues"
},
"keywords": [
"css",
"custom",
"docs",
"docsify",
"documentation",
"properties",
"theme",
"themes",
"themeable",
"variables"
],
"browserslist": [
"last 2 versions",
"not dead"
],
"files": [
"dist",
"src/scss/themes/defaults"
],
"main": "dist/js/docsify-themeable.js",
"unpkg": "dist/js/docsify-themeable.min.js",
"scripts": {
"prepare": "run-s clean build",
"build": "npm-run-all build:scss --parallel build:js build:pcss",
"build:js": "rollup -c",
"build:pcss": "postcss build/css/**/*.css --dir dist/css --use postcss-remove-null postcss-discard-empty postcss-flexbugs-fixes autoprefixer --map",
"build:scss": "node-sass --output-style compressed src/scss/themes -o build/css --source-map true --source-map-contents true --include-path node_modules",
"clean": "rimraf build/* dist/* docs/css docs/js",
"serve": "node server.js",
"start": "run-p watch serve",
"watch": "run-p 'build:* -- -w'",
"prewatch": "npm run build:scss",
"version": "npm run prepare"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.4.9",
"browser-sync": "^2.26.3",
"compression": "^1.7.3",
"css-vars-ponyfill": "^1.17.0",
"eslint": "^5.14.1",
"eslint-plugin-html": "^5.0.3",
"include-media": "^1.4.9",
"lodash.merge": "^4.6.1",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.14",
"postcss-cli": "^6.1.2",
"postcss-discard-empty": "^4.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-remove-null": "^1.2.1",
"rimraf": "^2.6.3",
"rollup": "^1.3.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-uglify": "^6.0.2",
"sass-utilities": "0.0.4"
},
"dependencies": {}
}