-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "Yasha",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/joshbarr/yasha"
},
"engines": {
"node": "0.12"
},
"scripts": {
"build": "gulp build",
"css": "gulp css",
"js": "gulp js",
"svg": "gulp svg",
"watch": "gulp watch",
"develop": "gulp start",
"start": "NODE_ENV=development gulp build && NODE_ENV=development gulp watch",
"production": "NODE_ENV=production gulp build",
"deploy": "git push && git push -f origin master:deploy/production"
},
"devDependencies": {
"babelify": "^6.0.2",
"browser-sync": "^2.9.3",
"browserify": "^11.0.1",
"browserify-incremental": "^3.0.0",
"express": "^4.13.0",
"gulp": "^3.9.0",
"gulp-inject": "^1.2.0",
"gulp-parker": "^0.1.0",
"gulp-pleeease": "^1.0.4",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"gulp-scss-lint": "^0.2.2",
"gulp-svgmin": "^1.1.2",
"gulp-svgstore": "^5.0.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"normalize.css": "^3.0.3",
"springload-analytics.js": "^2.0.0"
}
}