-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.72 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
{
"name": "vs-jekyll-base",
"version": "1.0.0",
"description": "Jekyll / CloudCannon Base",
"author": "Brent Robbins",
"repository": {
"type": "git",
"url": "git+https://github.com/variantstudios/vs-jekyll-base.git"
},
"homepage": "https://github.com/variantstudios/vs-jekyll-base",
"engines": {
"node": "~6.12.1",
"npm": "~3.10.10"
},
"scripts": {
"build": "gulp build",
"eslint:all": "npm run eslint:assets && npm run eslint:buildScripts",
"eslint:assets": "eslint -c ./assets/js/dev/.eslintrc.js --ignore-path .eslintignore ./assets/js/dev",
"eslint:buildScripts": "eslint -c ./.eslintrc.js --ignore-path .eslintignore ./*.js",
"gulp": "gulp",
"proof": "markdown-proofing --color --no-throw --",
"proof:all": "markdown-proofing --color **/*.md",
"proof:changed": "node proofScripts.js git-index-and-uncommitted **/*.md",
"proof:index": "node proofScripts.js git-index **/*.md",
"proof:latest": "node proofScripts.js latest **/*.md",
"proof:uncommitted": "node proofScripts.js git-uncommitted **/*.md",
"start": "gulp",
"test": "npm run eslint:all",
"which:gulp": "which gulp"
},
"dependencies": {
"gulp-svgmin": "^1.2.4",
"html5shiv": "^3.7.3",
"modernizr": "^3.6.0"
},
"devDependencies": {
"browser-sync": "^2.23.6",
"eslint": "^4.19.0",
"express": "^4.16.3",
"graceful-fs": "^4.1.11",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean-css": "^3.9.3",
"gulp-cli": "^2.0.1",
"gulp-compass": "^2.1.0",
"gulp-gzip": "^1.4.2",
"gulp-plumber": "^1.2.0",
"gulp-uglify": "^3.0.0",
"https": "^1.0.0",
"markdown-proofing": "^1.0.2",
"path": "^0.12.7",
"shelljs": "^0.8.1"
}
}