forked from laozhu/hugo-nuo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "hugo-nuo",
"version": "1.0.0",
"description": "An elegant hand-crafted hugo blog theme.",
"main": "index.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"sass": "sass --scss --style compressed --watch ./src/styles/main.scss:./static/css/bundle.css",
"fonts": "cpx './src/fonts/**/*.{svg,ttf,otf,woff,woff2,eot}' ./static/fonts --verbose",
"images": "cpx './src/images/**/*.{png,gif,jpg,ico,svg,webp}' ./static/img --verbose",
"eslint": "eslint --cache --fix index.js src/scripts",
"stylelint": "stylelint ./src/styles/**/*.scss",
"imagemin": "open -a ImageOptim ./src/images"
},
"repository": {
"type": "git",
"url": "https://github.com/laozhu/hugo-nuo.git"
},
"keywords": [
"blog",
"hugo",
"theme",
"sass",
"es6",
"rollup",
"hand-crafted",
"responsive",
"polyfill"
],
"author": {
"name": "Ritchie Zhu",
"email": "[email protected]",
"url": "https://laozhu.me"
},
"browserslist": [
"> 2%",
"last 2 versions",
"not IE < 10"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/laozhu/hugo-nuo/issues"
},
"homepage": "https://github.com/laozhu/hugo-nuo#readme",
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"cpx": "^1.5.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0"
},
"dependencies": {}
}