-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.17 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
{
"name": "sftp-dc",
"description": "Serviço de SFTP para coletada de dados",
"version": "1.0.0",
"private": true,
"main": "./bin/sftp-dc",
"repository": {
"type": "git",
"url": "[email protected]:perseus/sftp-dc.git"
},
"author": {
"name": "Laisson R. Silveira",
"email": "[email protected]"
},
"readme": "README.md",
"license": "UNLICENSED",
"scripts": {
"start": "NODE_ENV=development node ./bin/sftp-dc",
"build": "./node_modules/gulp/bin/gulp.js build",
"test": "./node_modules/gulp/bin/gulp.js test",
"test-debug": "NODE_ENV=test mocha test/*.test.js --inspect-brk",
"publish-patch": "npm version patch",
"publish-minor": "npm version minor",
"publish-major": "npm version major",
"postversion": "git push",
"pre-build": "./node_modules/dgt-tasks/bin/task --name pre-build"
},
"dependencies": {
"mkdirp": "^0.5.1",
"moment-timezone": "^0.5.23",
"node-sftp-server": "^0.3.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {}
}