-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
52
53
54
{
"name": "conditional-helpers",
"version": "2.0.3",
"description": "A collection of JavaScript helper functions to be used in conditional logic within projects",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "tsc",
"postbuild": "mv dist/index.* ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garydavisonos/conditional-helpers.git"
},
"keywords": [
"JavaScript",
"TypeScript",
"Conditional logic",
"Helper functions",
"Type checking",
"utility",
"validation",
"type-checking",
"npm-package",
"conditional-helpers",
"helper-functions",
"data-validation",
"type-guards",
"javascript-utilities"
],
"author": "Gary Davison",
"license": "ISC",
"bugs": {
"url": "https://github.com/garydavisonos/conditional-helpers/issues"
},
"homepage": "https://github.com/garydavisonos/conditional-helpers#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/jest": "^27.0.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"jest": "^27.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"type": "module",
"files": [
"index.d.ts",
"index.js",
"README.md"
]
}