forked from nersent/qusly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
60
{
"name": "qusly-core",
"version": "2.3.0",
"description": "An FTP/FTPS/SFTP client with modern API.",
"keywords": [
"ftp",
"sftp",
"ftps",
"ssh2",
"node-ftp",
"basic-ftp",
"qusly",
"qusly-core"
],
"author": {
"name": "Mikołaj Palkiewicz",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xnerhu/qusly-core.git"
},
"homepage": "https://github.com/xnerhu/qusly-core#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"clean": "rimraf ./build",
"test": "mocha -r ts-node/register tests/**/*.ts",
"coverage": "nyc npm run test",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "13.1.6",
"@types/sinon": "^7.5.1",
"@types/ssh2": "0.5.39",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"rimraf": "3.0.0",
"sinon": "^8.0.4",
"ts-node": "^8.6.1",
"typescript": "3.7.4"
},
"dependencies": {
"basic-ftp": "4.5.2",
"ssh2": "0.8.7"
}
}