-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
113 lines (113 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "inflection",
"version": "3.0.0",
"description": "A port of inflection-js to node.js module",
"keywords": [
"inflection",
"inflections",
"inflection-js",
"pluralize",
"singularize",
"camelize",
"underscore",
"humanize",
"capitalize",
"dasherize",
"titleize",
"demodulize",
"tableize",
"classify",
"foreign_key",
"ordinalize"
],
"author": "dreamerslab <[email protected]>",
"contributors": [
{
"name": "Ryan Schuft",
"email": "[email protected]"
},
{
"name": "Ben Lin",
"email": "[email protected]"
},
{
"name": "Lance Pollard",
"email": "[email protected]"
},
{
"name": "Dane O'Connor",
"email": "[email protected]"
},
{
"name": "David Miró",
"email": "[email protected]"
},
{
"name": "brandondewitt"
},
{
"name": "luk3thomas"
},
{
"name": "Marcel Klehr"
},
{
"name": "Raymond Feng"
},
{
"name": "Kane Cohen",
"email": "[email protected]"
},
{
"name": "Gianni Chiappetta",
"email": "[email protected]"
},
{
"name": "Eric Brody"
},
{
"name": "overlookmotel"
},
{
"name": "Patrick Mowrer"
},
{
"name": "Greger Olsson"
},
{
"name": "Jason Crawford",
"email": "[email protected]"
},
{
"name": "Ray Myers",
"email": "[email protected]"
},
{
"name": "Dillon Shook",
"email": "[email protected]"
},
{
"name": "Patrick Kuen",
"email": "[email protected]"
}
],
"devDependencies": {
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"main": "./lib/inflection.js",
"types": "./lib/inflection.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dreamerslab/node.inflection.git"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "vitest",
"prepublishOnly": "npm run test -- --run && npm run build"
}
}