-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "imhotest",
"version": "0.0.1",
"description": "A framework for architectural testing in TypeScript - describe rules using descriptive API and verify them automatically.",
"url": "https://github.com/v3ron/imhotest#readme",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"**/*.ts\" --fix",
"test": "vitest",
"coverage": "vitest --coverage",
"prepare": "husky install",
"release": "release-it"
},
"author": "Szymon Chmal",
"license": "MIT",
"dependencies": {
"minimatch": "^9.0.3",
"typescript": "^5.3.3"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@types/node": "^20.11.18",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"release-it": "^17.1.1",
"ts-morph": "^21.0.1",
"ts-node": "^10.9.2",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://github.com/v3ron/imhotest"
},
"engines": {
"node": ">=18.0.0"
}
}