generated from Evyweb/node-script-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "@evyweb/ioctopus",
"version": "1.2.0",
"description": "A simple IoC container for JavaScript and TypeScript for classes and functions.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"changeset": "npx changeset",
"changeset:version": "npx changeset version",
"publish:package": "npm run build && npx changeset publish"
},
"keywords": [
"ioc",
"inversion of control",
"dependency injection",
"dependency inversion",
"typescript",
"inversify",
"typescript-ioc",
"tsyringe",
"di"
],
"author": "Evyweb",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Evyweb/ioctopus.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"jest-extended": "^4.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2"
}
}