-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 757 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 757 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": "pay-processor",
"version": "0.0.1",
"description": "Payment Processor for apps",
"main": "index.js",
"scripts": {
"start" : "gulp run",
"dist" : "gulp dist",
"push" : "npm run dist && git push --all http"
},
"author": "Ehbraheem <ehbraheem@gmail.com>",
"license": "MIT",
"dependencies": {
"gulp": "^3.9.1"
},
"devDependencies": {
"browser-sync": "^2.18.8",
"del": "^2.2.2",
"gulp-clean-css": "^3.0.3",
"gulp-debug": "^3.1.0",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.1.1",
"gulp-replace": "^0.5.4",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-sync": "^0.1.4",
"gulp-uglify": "^2.1.0",
"gulp-useref": "^3.1.2"
}
}