-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.39 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.39 KB
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
{
"name": "@bird-studio/interactive-message",
"version": "5.0.12",
"description": "interactive message tool",
"keywords": [
"commit",
"conventional-commits",
"conventional",
"conventional changelog",
"semantic-version",
"semantic-release",
"gitmoji"
],
"homepage": "https://github.com/bird-studio/interactive-message",
"repository": "bird-studio/interactive-message",
"license": "MIT",
"author": "akira-toriyama",
"main": "lib/opt/index.js",
"bin": {
"interactive-message": "./bin/run"
},
"files": [
"/bin",
"/lib",
"README.md"
],
"scripts": {
"qualityCheck": "run-s qualityCheck:*",
"qualityCheck:type": "tsc --project ./tsconfig.build.json --noEmit",
"qualityCheck:unitTest": "jest --testPathIgnorePatterns .gitignore",
"_qualityCheck:redundancy": "jscpd",
"qualityCheck:findDeadCode": "ts-prune -e",
"qualityCheck:esLint": "eslint --ignore-path .gitignore .",
"qualityCheck:fmt": "prettier --check --ignore-path .gitignore .",
"prepack": "yarn qualityCheck && rm -rf lib && tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"@nut-tree/nut-js": "2.3.0",
"@octokit/rest": "19.0.5",
"cac": "6.7.14",
"cli-color": "2.0.3",
"cosmiconfig": "8.0.0",
"deepl-node": "1.7.4",
"gitmojis": "3.13.2",
"ini": "3.0.1",
"inquirer": "~8",
"inquirer-search-list": "1.2.6",
"table": "6.8.1",
"textgears-api": "1.1.3",
"typo-js": "1.2.2"
},
"devDependencies": {
"@bird-studio/eslint-config": "1.4.0",
"@bird-studio/interactive-message": "5.0.10",
"@bird-studio/js-config": "3.6.30",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@types/cli-color": "2.0.2",
"@types/ini": "1.3.31",
"@types/inquirer": "9.0.3",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.31.0",
"eslint-plugin-import": "2.26.0",
"jest": "29.3.1",
"jscpd": "3.5.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.2",
"semantic-release": "20.0.2",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"ts-prune": "0.10.3",
"tsc-alias": "1.8.2",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.4"
},
"publishConfig": {
"access": "public"
}
}