-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "@pixelmatters/ts-check-filter",
"version": "1.0.3",
"description": "Filter TypeScript errors based on the given rules.",
"main": "src/index.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "npm-run-all test:*",
"test:type": "tsc --noEmit",
"test:lint": "eslint src/",
"test:unit": "jest"
},
"keywords": [
"typescript",
"errors",
"ci",
"tool"
],
"author": "Gil Mendes <[email protected]>",
"license": "BSD-2-Clause",
"bin": {
"ts-check-filter": "./bin/entrypoint"
},
"devDependencies": {
"@pixelmatters/eslint-config-pixelmatters": "^1.0.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {
"nanocolors": "^0.2.12",
"sywac": "^1.3.0"
}
}