-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.67 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
{
"name": "nexus-ioc-graph-visualizer",
"version": "0.1.3",
"description": "Graph visualizer for Nexus-IoC Container",
"author": "Isqanderm <aleksandr.melnik.personal@gmail.com> (https://www.linkedin.com/in/isqander-melnik)",
"homepage": "https://github.com/Isqanderm/ioc-graph-visualizer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Isqanderm/ioc-graph-visualizer.git"
},
"bugs": {
"url": "https://github.com/Isqanderm/ioc-graph-visualizer/issues"
},
"keywords": [
"IoC",
"dependency injection",
"inversion control",
"typescript",
"DI",
"framework",
"container",
"nexus-ioc",
"graph-visualizer"
],
"files": ["dist", "package.json", "LICENSE", "README.md"],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"license": "MIT",
"peerDependencies": {
"nexus-ioc": "^0.1.0",
"reflect-metadata": "^0.1.12 || ^0.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"nexus-ioc": "^0.1.4",
"reflect-metadata": "^0.2.2",
"sinon": "^18.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"scripts": {
"build": "tsc ./src/index.ts --declaration --sourceMap --outDir ./dist",
"clean": "rm -rf ./dist",
"test": "jest",
"test:watch": "jest --watch",
"code:format": "npx @biomejs/biome format --write src __test__",
"code:lint": "npx @biomejs/biome lint --apply src __test__",
"code:check": "npx @biomejs/biome check src __test__",
"code:check:apply": "npx @biomejs/biome check --apply src __test__",
"prepublishOnly": "npm run clean && npm run code:check && npm run build"
}
}