-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
131 lines (131 loc) · 2.81 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
126
127
128
129
130
131
{
"name": "tsconfig-resolver",
"version": "3.0.1",
"description": "Walk up the tree to resolve `tsconfig.json` configuration objects.",
"keywords": [
"tsconfig",
"typescript",
"json",
"read",
"parse",
"file",
"fs",
"graceful",
"load",
"find",
"up",
"find-up",
"findup",
"look-up",
"look",
"search",
"match",
"resolve",
"parent",
"parents",
"folder",
"directory",
"walk",
"walking",
"path"
],
"repository": {
"type": "git",
"url": "https://github.com/ifiokjr/tsconfig-resolver.git"
},
"funding": "https://github.com/sponsors/ifiokjr",
"license": "MIT",
"author": {
"name": "Ifiok Jr.",
"email": "[email protected]",
"url": "https://ifiokjr.com"
},
"files": [
"src",
"dist"
],
"main": "dist/index.js",
"module": "dist/tsconfig-resolver.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": [
"prettier-plugin-packagejson",
"prettier-plugin-sorted"
],
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"prettier": "^2",
"mem": ">=4",
"minimist": ">=1.2.2"
},
"dependencies": {
"@types/json5": "^0.0.30",
"@types/resolve": "^1.17.0",
"json5": "^2.1.3",
"resolve": "^1.17.0",
"strip-bom": "^4.0.0",
"type-fest": "^0.13.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@sindresorhus/tsconfig": "0.7.0",
"@types/jest": "^25.2.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier-plugin-packagejson": "^2.2.3",
"prettier-plugin-sorted": "^2.0.0",
"semantic-release": "^17.0.7",
"tsdx": "^0.13.2",
"tslib": "^1.11.2",
"typescript": "^3.8.3"
},
"peerDependencies": {},
"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}"
}
]
]
}
}