-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
134 lines (134 loc) · 3.45 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
132
133
134
{
"name": "@makerx/node-cache",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.0.1",
"description": "A NodeJS package that makes it easy to cache objects and files locally and in AWS",
"keywords": [
"node-cache",
"storage",
"MakerX",
"TypeScript",
"TS"
],
"author": "MakerX",
"license": "MIT",
"bugs": {
"url": "https://github.com/MakerXStudio/node-cache/issues"
},
"homepage": "https://github.com/MakerXStudio/node-cache#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "run-s build:*",
"build:0-clean": "rimraf dist",
"build:1-compile": "npx tsc",
"build:2-copy-pkg-json": "npx --yes @makerx/ts-toolkit@latest copy-package-json --main ./index.js --types ./index.d.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint ./src/ --ext .ts",
"lint:fix": "eslint ./src/ --ext .ts --fix",
"commitlint": "commitlint --edit -o",
"semantic-release": "semantic-release",
"generate-doc": "typedoc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MakerXStudio/node-cache.git"
},
"engines": {
"node": ">=18.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.391.0",
"glob": "^10.3.10",
"mime": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@makerx/eslint-config": "^3.1.0",
"@makerx/prettier-config": "^2.0.0",
"@makerx/ts-config": "^1.0.1",
"@types/jest": "^29.5.11",
"@types/mime": "^3.0.4",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"prettier-2": "npm:prettier@^2",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"ts-jest": "^29.1.1",
"ts-jest-mocker": "^0.5.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "./dist"
}
],
"@semantic-release/github"
]
}
}