-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "metch-case",
"author": "Najid Nadri <muhd.najid.nadri@gmail.com> (https://www.linkedin.com/in/muhdnajidnadri/)",
"version": "1.3.0",
"description": "Switch case on steroid. Enhanced branching with simplified syntax and support for conditional functions.",
"keywords": [
"case",
"match",
"pattern",
"switch",
"pattern-matching",
"switch-case"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/Najidnadri/metch-case",
"repository": {
"type": "git",
"url": "https://github.com/Najidnadri/metch-case"
},
"files": [
"dist",
"README.md",
"index.d.ts",
"package.json"
],
"bugs": {
"url": "https://github.com/Najidnadri/metch-case/issues",
"email": "muhd.najid.nadri@gmail.com"
},
"scripts": {
"build": "npx tsc",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}