-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "Baseline",
"version": "1.0.0",
"description": "Personal frontend boilerplate setup",
"main": "gulpfile.js",
"scripts": {
"test": "gulp build"
},
"repository": {
"type": "git",
"url": "[email protected]:rbndelrio/baseline.git"
},
"author": "Ruben Del Rio",
"license": "ISC",
"bugs": {
"url": "https://github.com/rbndelrio/baseline/issues"
},
"homepage": "https://github.com/rbndelrio/baseline#readme",
"dependencies": {
"browserify": "^12.0.1",
"browserify-shim": "^3.8.11",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-minify-css": "^1.2.1",
"gulp-plumber": "^1.0.1",
"gulp-ruby-sass": "^2.0.5",
"gulp-uglify": "^1.5.1",
"jquery": "^2.1.4",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"browser-sync": "^2.10.0",
"gulp-connect-php": "0.0.7",
"gulp-imageoptim": "^0.3.3"
},
"browserify-shim": {
"jquery": "$"
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}