-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.02 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": "smile_please",
"version": "1.0.0",
"description": "A javascript based lib utility that can capture the screenshot of user-defined DOM set either programmatically or through elegant GUI.",
"main": "smilePlease.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "DEBUG=* nodemon ./example/server.js",
"watch": "DEBUG=* nodemon -e js,sjs,css ./server.js",
"build": "gulp watch",
"deploy": "cd ./example && http-server"
},
"repository": {
"url": "[email protected]:venkat.subramanian/smile_please.git",
"type": "git"
},
"author": "Venkat <[email protected]>",
"license": "MIT",
"dependencies": {
"express": "^4.14.0",
"http-server": "^0.9.0",
"nodemon": "^1.11.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-imagemin": "^3.1.1",
"gulp-minify-css": "^1.2.4",
"gulp-sass": "^2.3.2",
"gulp-size": "^2.1.0",
"gulp-svgmin": "^1.2.3",
"gulp-uglify": "^2.0.0"
}
}