-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 1.93 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "qusly-core",
"version": "4.0.4",
"description": "Powerful multi-protocol library for file transfer.",
"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",
"files": [
"build"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build": "concurrently \"npm run clean-build\" \"webpack\"",
"prepublishOnly": "npm run build",
"clean-build": "rimraf ./build",
"clean-docs": "rimraf ./.docs",
"test": "mocha -r ts-node/register tests/**/*.ts --timeout 5000",
"coverage": "nyc --reporter=lcov npm run test",
"docs": "concurrently \"npm run clean-docs\" \"typedoc\""
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "14.0.14",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"chai": "^4.2.0",
"codecov": "^3.7.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"fork-ts-checker-webpack-plugin": "^5.0.5",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typedoc-plugin-extras": "^1.1.4",
"typescript": "3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/ssh2": "0.5.43",
"basic-ftp": "4.6.1",
"ssh2": "0.8.9"
}
}