-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
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
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/monorepo/issues"
},
"description": "InversifyJs binding decorators docs code examples package",
"dependencies": {
"@inversifyjs/binding-decorators": "workspace:*",
"inversify": "^8.1.0"
},
"devDependencies": {
"@inversifyjs/code-examples-devkit": "workspace:*",
"@inversifyjs/eslint-plugin-require-extensions": "workspace:*",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.2",
"eslint": "10.2.0",
"glob": "13.0.6",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"tslib": "2.8.1",
"typescript": "6.0.2",
"vitest": "4.1.2"
},
"homepage": "https://inversify.io",
"keywords": [
"dependency injection",
"dependency inversion",
"di",
"inversion of control container",
"ioc",
"javascript",
"node",
"typescript"
],
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"license": "MIT",
"name": "@inversifyjs/binding-decorators-code-examples",
"type": "module",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/monorepo.git"
},
"scripts": {
"build": "tsc && pnpm run generate:examples",
"build:clean": "rimraf generated lib",
"format": "prettier --write ./src",
"generate:examples": "node ./lib/scripts/generateExamples/index.js",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"test": "vitest run",
"test:integration": "pnpm run test --project Integration",
"test:coverage": "pnpm run test:unit --coverage",
"test:uncommitted": "pnpm run test --changed=HEAD",
"test:unit": "pnpm run test --project Unit"
}
}