-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1002 Bytes
/
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
{
"name": "ts-fp-di",
"version": "0.22.0",
"description": "Tiny TypeScript functional dependency injection, based on AsyncLocalStorage. Supports Node.js, Deno",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:darky/ts-fp-di.git"
},
"keywords": [
"fp",
"functional",
"di",
"dependency",
"injection",
"typescript",
"ts",
"async",
"local",
"storage",
"asynclocalstorage",
"deno"
],
"scripts": {
"doc": "typedoc index.ts",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && node --test dist/test.js"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"author": "Vladislav Botvin",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"sinon": "^19.0.2",
"typedoc": "^0.26.7",
"typescript": "5.6.2"
}
}