-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "@jiaminghi/ftp",
"version": "0.0.2",
"author": "JiaMing <[email protected]>",
"description": "Promisify FTP",
"main": "lib/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jiaming743/ftp.git"
},
"scripts": {
"clean": "rimraf lib types",
"type:check": "tsc --noEmit",
"lint": "eslint --ext js,ts src",
"format:check": "prettier --check .",
"format": "prettier --write .",
"check": "npm run type:check && npm run lint && npm run format:check",
"build": "tsc",
"prepare": "npm run clean && npm run check && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run check",
"pre-push": "npm run check"
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jiaming743/ftp/issues"
},
"keywords": [
"ftp",
"promisify"
],
"dependencies": {
"@types/ftp": "^0.3.31",
"ftp": "^0.3.10"
},
"homepage": "https://github.com/jiaming743/ftp#readme",
"devDependencies": {
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}