-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 2.8 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "prettier-plugin-sorted",
"version": "2.0.0",
"description": "Sort your JavaScript and TypeScript imports with prettier with automatic alias support",
"keywords": [
"import-sort",
"prettier",
"sort",
"typescript",
"plugin",
"tsconfig",
"alias"
],
"license": "MIT",
"author": {
"name": "Ifiok Jr.",
"email": "[email protected]",
"url": "https://ifiokjr.com"
},
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"module": "dist/prettier-plugin-sorted.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint",
"pre-push": "yarn tsc --noEmit && yarn lint && yarn test"
}
},
"prettier": {
"plugins": [
"./node_modules/prettier-plugin-packagejson",
"./"
],
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"mem": ">=4",
"minimist": ">=1.2.2"
},
"dependencies": {
"@types/prettier": "^2.0.0",
"import-sort": "^6.0.0",
"import-sort-config": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-custom": "^2.1.2",
"tiny-invariant": "^1.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^25.2.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"prettier": "^2.0.0",
"prettier-plugin-packagejson": "^2.2.2",
"semantic-release": "^17.0.7",
"tsdx": "^0.13.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"prettier": "^2.0.0"
},
"importSort": {
".js,.ts,.tsx": {
"options": {
"cacheStrategy": "directory",
"wildcardAtStart": false,
"ignoredAliases": [],
"extraAliases": [
"@my-alias",
"simple"
],
"bottomAliases": [
"@bottom",
"./relative/bottom"
]
}
}
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}