-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 903 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 903 Bytes
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
{
"$schema": "https://json.schemastore.org/package",
"name": "merge-callbacks",
"version": "1.0.1",
"description": "Merge multiple callback functions into a single function that calls all of them in sequence.",
"keywords": [
"callback",
"merge",
"functions",
"utility"
],
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Aseminaunz/merge-callbacks.git"
},
"scripts": {
"build": "tsc"
},
"author": "Aimar Seminario Unzu <aimar.seminario@gmail.com> (https://github.com/Aseminaunz)",
"license": "MIT",
"packageManager": "npm@11.4.1+sha512.fcee43884166b6f9c5d04535fb95650e9708b6948a1f797eddf40e9778646778a518dfa32651b1c62ff36f4ac42becf177ca46ca27d53f24b539190c8d91802b",
"devDependencies": {
"typescript": "^5.8.3",
"@tsconfig/strictest": "^2.0.5"
}
}