@ancon/wildcat-utils 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +97 -0
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ancon/wildcat-utils",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"repository": "git@bitbucket.org:anconab/wildcat.utils.git",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"private": false,
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"test": "jest",
|
|
16
|
+
"build": "tsc",
|
|
17
|
+
"dev": "tsc -w"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@babel/core": "^7.16.5",
|
|
21
|
+
"@babel/preset-env": "^7.16.5",
|
|
22
|
+
"@babel/preset-typescript": "^7.16.5",
|
|
23
|
+
"@commitlint/cli": "^16.0.1",
|
|
24
|
+
"@commitlint/config-conventional": "^16.0.0",
|
|
25
|
+
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
26
|
+
"@semantic-release/git": "^10.0.1",
|
|
27
|
+
"@semantic-release/npm": "^8.0.3",
|
|
28
|
+
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
29
|
+
"@types/jest": "^27.0.3",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
31
|
+
"@typescript-eslint/parser": "^5.8.1",
|
|
32
|
+
"babel-jest": "^27.4.5",
|
|
33
|
+
"eslint": "^8.5.0",
|
|
34
|
+
"eslint-config-airbnb-base": "^15.0.0",
|
|
35
|
+
"eslint-config-airbnb-typescript": "^16.1.0",
|
|
36
|
+
"eslint-plugin-import": "^2.25.3",
|
|
37
|
+
"husky": "^4.3.8",
|
|
38
|
+
"jest": "^27.4.5",
|
|
39
|
+
"lint-staged": "^10.2.11",
|
|
40
|
+
"moment": "^2.29.1",
|
|
41
|
+
"prettier": "^2.0.5",
|
|
42
|
+
"semantic-release": "^18.0.1",
|
|
43
|
+
"ts-jest": "^27.1.2",
|
|
44
|
+
"typescript": "^4.5.4"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"moment": "^2.29.0"
|
|
48
|
+
},
|
|
49
|
+
"commitlint": {
|
|
50
|
+
"extends": [
|
|
51
|
+
"@commitlint/config-conventional"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"prettier": {
|
|
55
|
+
"semi": false,
|
|
56
|
+
"singleQuote": true,
|
|
57
|
+
"trailingComma": "all",
|
|
58
|
+
"arrowParens": "avoid"
|
|
59
|
+
},
|
|
60
|
+
"husky": {
|
|
61
|
+
"hooks": {
|
|
62
|
+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
63
|
+
"pre-commit": "lint-staged"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"lint-staged": {
|
|
67
|
+
"src/**/*.ts": [
|
|
68
|
+
"eslint",
|
|
69
|
+
"prettier --write"
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
"release": {
|
|
73
|
+
"branches": [
|
|
74
|
+
"main"
|
|
75
|
+
],
|
|
76
|
+
"plugins": [
|
|
77
|
+
[
|
|
78
|
+
"@semantic-release/commit-analyzer"
|
|
79
|
+
],
|
|
80
|
+
[
|
|
81
|
+
"@semantic-release/release-notes-generator",
|
|
82
|
+
{
|
|
83
|
+
"preset": "conventionalCommits"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"@semantic-release/npm",
|
|
87
|
+
[
|
|
88
|
+
"@semantic-release/git",
|
|
89
|
+
{
|
|
90
|
+
"assets": [
|
|
91
|
+
"package.json"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
}
|