-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "docsify-print",
"version": "1.0.0-alpha.0",
"description": "adds a print button for your docsify site",
"main": "dist/index.js",
"scripts": {
"fixlint": "standard --fix",
"test": "standard",
"prebuild": "del-cli dist ",
"build": "npm run build:css && npm run build:js",
"build:js": "rollup --config ../../rollup.config.js",
"build:css": "postcss src/style.css -o dist/style.css --config ../../postcss.config.js"
},
"files": [
"dist"
],
"keywords": [
"docsify",
"plugin",
"print",
"docsify-plugin"
],
"author": "anikethsaha <anik220798@gmail.com>",
"license": "MIT",
"standard": {
"ignore": [
"dist/*"
]
},
"repository": "anikethsaha/docsify-plugin",
"devDependencies": {
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"del-cli": "^3.0.0",
"postcss": "^8.2.10",
"postcss-cli": "^7.1.0",
"postcss-preset-env": "^6.7.0",
"rollup": "^1.31.1",
"rollup-plugin-terser": "^5.2.0",
"standard": "^14.3.1"
}
}