-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.29 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
{
"name": "simple-gulp-setup",
"version": "1.0.0-alpha.2",
"description": "1. Requires gulpfile.babel.js to use gulp and babel, and .babelrc to use babel for ES2015 2. Make sure settings.scripts and settings.styles (in gulpfile.babel.js) points is an array of file/s in your project 3. npm init 4. follow instructions 5. npm install 6. npm install --save gulp gulp-concat gulp-uglify gulp-rename gulp-babel gulp-sass gulp-autoprefixer gulp-clean-css 7. Run gulp in terminal",
"main": "gulpfile.babel.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreobriennz/simple-gulp-setup.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andreobriennz/simple-gulp-setup/issues"
},
"homepage": "https://github.com/andreobriennz/simple-gulp-setup#readme",
"dependencies": {
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^7.0.1",
"gulp-clean-css": "^3.9.4",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.3.0",
"gulp-sass": "^4.0.1",
"gulp-uglify": "^3.0.0",
"snyk": "^1.231.0"
},
"snyk": true
}