-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "gulp-ssh-deploy",
"version": "0.1.0",
"description": "A plugin to gulp that allows for deploying releases via SSH.",
"main": "dist/index.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"pretest": "npm run build",
"test": "mocha --require babel-polyfill --require babel-register",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwir3/gulp-ssh-deploy.git"
},
"keywords": [
"gulp",
"npm",
"ssh",
"deploy"
],
"author": {
"name": "Scott Johnson",
"email": "jaywir3@gmail.com",
"url": "https://jwir3.com"
},
"funding": {
"url": "https://github.com/sponsors/jwir3"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/jwir3/gulp-ssh-deploy/issues"
},
"homepage": "https://github.com/jwir3/gulp-ssh-deploy#readme",
"dependencies": {
"filehound": "^1.12.2",
"fs-jetpack": "^0.10.3",
"gulp": "^3.9.1",
"gulp-sequence": "^0.4.6",
"gulp-ssh": "^0.7.0",
"gulp-util": "^3.0.7"
},
"env": {
"node": true,
"mocha": true,
"es6": true
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"mocha": "^8.0.1"
}
}