-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.28 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
87
88
89
90
{
"name": "jtcommand",
"version": "1.0.16",
"author": {
"name": "HunterJiang"
},
"main": "bin/index.js",
"keywords": [
"utils",
"command",
"jt",
"jtcommand"
],
"bin": {
"jt": "./bin/index.js"
},
"files": [
"bin",
"src",
"config"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jafshare/JT.git"
},
"scripts": {
"test": "ts-node src/index.ts",
"dev": "rollup -c -w",
"build": "rollup -c",
"link": "yarn link",
"unlink": "yarn unlink",
"prepare": "npx husky install",
"lint": "eslint --cache --fix --ext .js,.ts,.jsx,.tsx ./src"
},
"dependencies": {
"@types/archiver": "^5.3.1",
"archiver": "^5.3.1",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"execa": "^6.0.0",
"extract-zip": "^2.0.1",
"figlet": "^1.5.2",
"fs-extra": "^11.1.0",
"gitly": "^2.2.1",
"inquirer": "^8.2.0",
"latest-version": "^7.0.0",
"lodash": "^4.17.21",
"node-fetch": "2",
"node-ssh": "11.1.1",
"ora": "5.4.1",
"read-pkg": "^7.1.0",
"write-pkg": "^5.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/execa": "^2.0.0",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/lodash": "^4.14.191",
"@types/node": "^16.11.9",
"@types/rollup": "^0.54.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.1",
"rollup": "^2.60.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.31.0",
"ts-node": "^10.4.0",
"typescript": "^4.9.4"
},
"bugs": {
"url": "https://github.com/jafshare/JT/issues"
},
"homepage": "https://github.com/jafshare/JT#readme",
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": "eslint --cache --fix --ext .js,.ts,.jsx,.tsx ./src",
"src/**/*.{js,jsx,tsx,ts,less,md,json}": "prettier --ignore-unknown --write"
}
}