This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.36 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
80
81
82
83
84
{
"name": "Gulp_v4-Metalsmith-Starter",
"version": "0.2.0",
"description": "Gulp v4 - Metalsmith - Starter",
"author": "S1SYPHOS <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/S1SYPHOS/Gulp_v4-Metalsmith-Starter"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/S1SYPHOS/Gulp_v4-Metalsmith-Starter/issues"
},
"scripts": {
"start": "gulp",
"build": "NODE_ENV=production gulp build",
"deploy": "NODE_ENV=production gulp build && gulp deploy",
"stage": "NODE_ENV=production gulp",
"debug": "DEBUG=metalsmith* node ./index.js",
"devel": "gulp build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"gulp-gh-pages": "^0.5.4"
},
"devDependencies": {
"autoprefixer": "^6.7.1",
"browser-sync": "^2.18.7",
"eslint-config-google": "^0.7.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-cached": "^1.1.1",
"gulp-changed": "^1.3.2",
"gulp-clean-css": "^2.3.2",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^3.0.1",
"gulp-exec": "^2.1.3",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.1.1",
"gulp-memory-cache": "^0.3.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.3.0",
"gulp-sass": "^3.1.0",
"gulp-size": "^2.1.0",
"gulp-stylelint": "^3.7.0",
"gulp-uglify": "^2.0.1",
"imagemin-pngquant": "^5.0.0",
"metalsmith": "^2.3.0",
"metalsmith-better-excerpts": "^0.1.7",
"metalsmith-collections": "^0.9.0",
"metalsmith-feed-atom": "^1.0.0",
"metalsmith-fingerprint": "^1.0.3",
"metalsmith-html-minifier": "^2.2.0",
"metalsmith-in-place": "^2.0.1",
"metalsmith-jekyll-dates": "0.0.5",
"metalsmith-layouts": "^1.7.0",
"metalsmith-mapsite": "^1.0.4",
"metalsmith-markdown": "^0.2.1",
"metalsmith-metallic": "^2.0.1",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-related": "0.0.5",
"postcss-reporter": "^3.0.0",
"postcss-scss": "^0.4.0",
"stylelint": "^7.7.1",
"stylelint-config-sass-guidelines": "^1.1.1",
"swig": "^1.4.2",
"vinyl-named": "^1.1.0",
"webpack-stream": "^3.2.0"
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"rules": {}
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"env": {
"browser": true
},
"rules": {}
}
}