-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "site-start",
"version": "1.0.0",
"description": "A template repo for starting a gulp based site",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/gulp",
"lint-js": "./node_modules/.bin/eslint gulpfile.js gulp/**/*.js",
"lint-style": "./node_modules/.bin/stylelint sass/*.scss css/*.css",
"lint-yaml": "./node_modules/.bin/yamllint .github/**/*.yml",
"lint": "npm run lint-js && npm run lint-style && npm run lint-yaml",
"watch": "./node_modules/.bin/gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pcon/site-starter.git"
},
"author": "Patrick Connelly",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/pcon/site-starter/issues"
},
"homepage": "https://github.com/pcon/site-starter#readme",
"dependencies": {
"browserify": "^16.5.2",
"config": "^3.3.6",
"del": "^6.0.0",
"eslint": "^7.27.0",
"gulp": "^4.0.2",
"gulp-bro": "^2.0.0",
"gulp-clean": "^0.4.0",
"gulp-connect": "^5.7.0",
"gulp-data": "^1.3.1",
"gulp-htmlmin": "^5.0.1",
"gulp-nunjucks-render": "^2.2.3",
"gulp-sass": "^4.1.0",
"gulp-sitemap": "^8.0.0",
"node-sass": "^7.0.0",
"stylelint": "^13.13.1",
"yaml-lint": "^1.2.4"
}
}