-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_package.json
More file actions
31 lines (31 loc) · 888 Bytes
/
_package.json
File metadata and controls
31 lines (31 loc) · 888 Bytes
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
{
"name": "sample-project-gulp",
"version": "1.0.0",
"description": "The sample project we will use throughout the Gulp chapters",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/frontend-tooling/sample-project-gulp"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/frontend-tooling/sample-project-gulp/issues"
},
"homepage": "https://github.com/frontend-tooling/sample-project-gulp",
"devDependencies": {
"browser-sync": "^2.7.1",
"del": "^2.0.1",
"gulp": "git://github.com/gulpjs/gulp#4.0",
"gulp-autoprefixer": "^2.1.0",
"gulp-concat": "^2.5.2",
"gulp-jshint": "^1.9.4",
"gulp-jslint": "^0.2.2",
"gulp-less": "^3.0.2",
"gulp-minify-css": "^1.0.0",
"gulp-uglify": "^1.1.0"
}
}