-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 967 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 967 Bytes
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
{
"name": "@neal83/typeswitch",
"version": "1.0.6",
"description": "Provides a TypeSwitch function in Typescript allowing you to switch on the type of the argument past into the function providing a sudo simple pattern matching function.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p ."
},
"files": ["lib/**/*", "index*"],
"repository": {
"type": "git",
"url": "git+https://github.com/neal83/TypeSwitch.git"
},
"keywords": [
"TypeSwitch",
"Pattern",
"Matching",
"PatternMatching",
"Class Conditional"
],
"author": "Neal Callaghan",
"license": "ISC",
"bugs": {
"url": "https://github.com/neal83/TypeSwitch/issues"
},
"homepage": "https://github.com/neal83/TypeSwitch#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.7.0",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}