generated from teunmooij/typescript-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "systemic-ts",
"version": "1.0.0",
"description": "A minimal type-safe dependency injection library",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./migrate": {
"require": "./dist/migrate.js",
"import": "./dist/migrate.mjs",
"types": "./dist/migrate.d.ts"
}
},
"scripts": {
"build": "tsup",
"test": "jest -c jest.config.ts",
"test:coverage": "jest -c jest.config.ts --verbose --collectCoverage",
"test:ui": "vitest --ui --coverage.enabled=true",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:apply": "biome lint --apply .",
"check": "biome check .",
"check:apply": "biome check --apply .",
"license": "ts-node ./scripts/license.ts",
"prepare": "husky install"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/license-checker": "^25.0.6",
"husky": "^8.0.1",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"lint-staged": "^13.0.3",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"lint-staged": {
"*": "biome check --no-errors-on-unmatched --files-ignore-unknown=true --apply"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teunmooij/systemic-ts.git"
},
"keywords": [
"dependency",
"injection",
"inversion of control",
"graceful",
"start up",
"shutdown",
"ioc",
"systemic"
],
"author": "Teun Mooij (https://github.com/teunmooij)",
"license": "MIT",
"bugs": {
"url": "https://github.com/teunmooij/systemic-ts/issues"
},
"homepage": "https://github.com/teunmooij/systemic-ts#readme",
"dependencies": {
"@types/toposort": "^2.0.7",
"debug": "^4.3.5",
"toposort": "^2.0.2"
}
}