-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.28 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
{
"name": "loppo-theme-wangdoc",
"version": "0.7.3",
"description": "a theme of Loppo used by Wangdoc",
"main": "index.js",
"scripts": {
"clean-css": "rm -rf ./theme/assets/css/*",
"build-css": "npm run clean-css && npm run build-sass && npm run build-postcss",
"build-postcss": "postcss --output theme/assets/css/app.min.css theme/assets/css/app.css",
"build-sass": "sass --style expanded --load-path=node_modules sass/wangdoc.sass theme/assets/css/app.css",
"build-js": "mkdir -p theme/assets/js && browserify -g uglifyify scripts/index.js > theme/assets/js/app.js",
"build": "npm run build-css && npm run build-js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"loppo",
"theme",
"template"
],
"homepage": "https://github.com/wangdoc/loppo-theme-wangdoc",
"repository": {
"type": "git",
"url": "https://github.com/wangdoc/loppo-theme-wangdoc.git"
},
"author": "Ruan Yifeng",
"license": "MIT",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"browserify": "17.x",
"bulma": "1.x",
"cssnano": "^7.0.1",
"postcss": "^8.3.6",
"postcss-cli": "11.x",
"postcss-prune-var": "^1.1.2",
"postcss-variable-compress": "^3.0.0",
"sass": "1.x",
"uglifyify": "^5.0.1"
}
}