-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "ts-type-checked",
"version": "0.6.5",
"description": "Type checking utilities for TypeScript.",
"repository": {
"type": "git",
"url": "git+https://github.com/janjakubnanista/ts-type-checked.git"
},
"keywords": [
"TypeScript",
"type checking",
"type checks",
"duck typing",
"type guards"
],
"author": "Jan Jakub Nanista <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/janjakubnanista/ts-type-checked/issues"
},
"homepage": "https://github.com/janjakubnanista/ts-type-checked#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/node": "^14.0.18",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"@wessberg/rollup-plugin-ts": "^1.2.27",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup": "^2.20.0",
"rollup-plugin-copy": "^3.3.0",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}(x)?": [
"eslint --fix"
]
}
}