This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.97 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
{
"name": "ftp-hope",
"version": "0.1.2",
"description": "A ftp client with typescript support under node environment",
"keywords": [
"ftp",
"node",
"promise"
],
"homepage": "https://github.com/Mister-Hope/ftp-hope#readme",
"bugs": {
"url": "https://github.com/Mister-Hope/ftp-hope/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mister-Hope/ftp-hope.git"
},
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "zhangbowang1998@gmail.com",
"url": "https://mrhope.site"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "typings/index.d.ts",
"scripts": {
"build": "rollup -c",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"dev": "rollup -c -w",
"lint": "prettier --check --write . && eslint . --ext .js,.ts --fix",
"lint:check": "prettier --check . && eslint . --ext .js,.ts",
"test": "jest",
"test-listDir": "node tests/listDir.js",
"test-putFile": "node tests/putFile.js",
"test-putFolder": "node tests/putFolder.js",
"test-getFile": "node tests/getFile.js",
"test-getFolder": "node tests/getFolder.js"
},
"dependencies": {
"@types/ftp": "^0.3.33",
"@types/xregexp": "^4.4.0",
"ftp": "^0.3.10",
"xregexp": "^5.1.0"
},
"devDependencies": {
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "16.11.6",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"conventional-changelog-cli": "2.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "11.2.6",
"prettier": "2.4.1",
"rollup": "2.59.0",
"rollup-plugin-dts": "4.0.0",
"sort-package-json": "1.52.0",
"ts-jest": "^27.0.7",
"ts-node": "10.4.0",
"typescript": "4.4.4"
}
}