-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.15 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "node-upload-util",
"version": "0.1.0",
"description": "A node upload util, Support ftp and sftp",
"main": "dist/index.js",
"files": [
"bin",
"dist"
],
"scripts": {
"commit": "yarn lint && git-cz",
"prebuild": "rimraf dist",
"dev": "tsc -w -p ./",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint --fix src/**/* --ext .ts,.js",
"lint-without-fix": "eslint src/**/* --ext .ts,.js",
"test": "jest",
"test:cover": "jest --coverage",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"bin": {
"upload": "bin/index.js"
},
"keywords": [
"cli",
"upload"
],
"author": "hangboss",
"repository": {
"type": "git",
"url": "git+https://github.com/hangboss1761/upload-util"
},
"license": "MIT",
"homepage": "https://github.com/hangboss1761/upload-util#readme",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"engines": {
"node": ">=10"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.1.1",
"coveralls": "^3.1.0",
"enquirer": "^2.3.6",
"esm": "^3.2.25",
"execa": "^4.0.0",
"ftp": "^0.3.10",
"glob": "^7.1.6",
"lodash": "^4.17.15",
"log4js": "^6.3.0",
"jsonschema": "^1.4.0",
"minimist": "^1.2.0",
"ora": "^4.0.3",
"rimraf": "^3.0.2",
"rxjs": "^6.5.4",
"semver": "^7.1.3",
"shelljs": "^0.8.3",
"ssh2-sftp-client": "^5.3.2"
},
"devDependencies": {
"@types/ftp": "^0.3.31",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.16",
"@types/logger": "^0.0.0",
"@types/node": "^13.9.0",
"@types/semver": "^7.1.0",
"@types/shelljs": "^0.8.6",
"@types/ssh2-sftp-client": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"cz-customizable": "^6.2.0",
"eslint": "7.7.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"ts-jest": "^26.4.4",
"typescript": "^3.8.3"
}
}