-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "loose-ts-check",
"version": "2.0.0",
"description": "Run TS type-check and ignore certain errors in some files",
"bin": "bin/loose-ts-check",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"type-check": "tsc",
"test": "jest",
"test:unit": "jest src/",
"test:integration": "jest test/",
"test:integration:only-latest": "ONLY_LATEST_VERSION=1 jest test/",
"test:watch": "npm run test -- --watch",
"lint:formatting": "prettier --check src *.md",
"fix:formatting": "prettier --write src *.md",
"prepublishOnly": "rm -rf dist && npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gelio/loose-ts-check.git"
},
"keywords": [
"typescript",
"type-check",
"loose",
"config"
],
"files": [
"dist",
"bin"
],
"author": "Grzegorz Rozdzialik <voreny.gelio@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gelio/loose-ts-check/issues"
},
"homepage": "https://github.com/Gelio/loose-ts-check#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/minimatch": "^5.1.2",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.{ts,md}": "prettier --write"
},
"dependencies": {
"chalk": "^4.1.0",
"minimatch": "^5.1.2",
"ts-invariant": "^0.10.3",
"yargs": "^17.6.2"
}
}