-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "defined-type-guard",
"version": "1.0.1",
"description": "A TypeScript Type-Guard for Filtering out undefined Values",
"main": ".",
"files": [
"index.js",
"index.d.ts"
],
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:borfig/defined-type-guard.git"
},
"bugs": {
"url": "https://github.com/borfig/defined-type-guard/issues"
},
"keywords": [
"defined",
"typescript",
"type-guard",
"ts",
"undefined"
],
"homepage": "https://github.com/borfig/defined-type-guard",
"scripts": {
"lint": "eslint . --ext .ts --max-warnings 0",
"test": "mocha",
"build": "tsc -d index.ts"
},
"author": "Boris Figovsky",
"license": "ISC",
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chai": "^4.3.6",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.1",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "~4.5.5"
}
}