-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "@ilpt/systemic-ts-service-runner",
"version": "1.0.0",
"description": "Service runner for @ilpt/systemic-ts",
"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"
}
},
"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 .",
"prepare": "husky install"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "^13.0.3",
"@ilpt/systemic-ts": "^1.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@ilpt/systemic-ts": "^1"
},
"lint-staged": {
"*": "biome check --no-errors-on-unmatched --files-ignore-unknown=true --apply"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinitaslearning/systemic-ts-service-runner.git"
},
"keywords": [
"systemic-ts",
"systemic",
"service",
"runner"
],
"author": "Teun Mooij (https://github.com/teunmooij)",
"license": "MIT",
"bugs": {
"url": "https://github.com/infinitaslearning/systemic-ts-service-runner/issues"
},
"homepage": "https://github.com/infinitaslearning/systemic-ts-service-runner#readme"
}