-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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": "common-coding-tools",
"version": "2.0.35",
"description": "A common code module for use in multiple npm packages",
"repository": "PaneruVipin/common-coding-tools",
"main": "./src/index.js",
"files": [
"src",
"array",
"hashing",
"random",
"string",
"types",
"validation"
],
"scripts": {
"test": "jest"
},
"keywords": [
"common",
"coding",
"tools",
"common hooks",
"javascript",
"validation",
"data fitlerization",
"types",
"string metods",
"backend validation",
"hashing",
"converter fn",
"array methodes"
],
"author": "PaneruVipin",
"funding": [
{
"type": "individual",
"url": "https://opencollective.com/common-coding-tools"
}
],
"license": "ISC",
"exports": {
".": "./src/index.js",
"./array": "./array/index.js",
"./string": "./string/index.js",
"./validation": "./validation/index.js",
"./types": "./types/index.js",
"./hashing": "./hashing/index.js",
"./random": "./random/index.js"
},
"devDependencies": {
"typescript": "^4.9.4"
}
}