UNPKG

2.16 kBJSONView Raw
1{
2 "name": "inflection",
3 "version": "3.0.0",
4 "description": "A port of inflection-js to node.js module",
5 "keywords": [
6 "inflection",
7 "inflections",
8 "inflection-js",
9 "pluralize",
10 "singularize",
11 "camelize",
12 "underscore",
13 "humanize",
14 "capitalize",
15 "dasherize",
16 "titleize",
17 "demodulize",
18 "tableize",
19 "classify",
20 "foreign_key",
21 "ordinalize"
22 ],
23 "author": "dreamerslab <ben@dreamerslab.com>",
24 "contributors": [
25 {
26 "name": "Ryan Schuft",
27 "email": "ryan.schuft@gmail.com"
28 },
29 {
30 "name": "Ben Lin",
31 "email": "ben@dreamerslab.com"
32 },
33 {
34 "name": "Lance Pollard",
35 "email": "lancejpollard@gmail.com"
36 },
37 {
38 "name": "Dane O'Connor",
39 "email": "dane.oconnor@gmail.com"
40 },
41 {
42 "name": "David Miró",
43 "email": "lite.3engine@gmail.com"
44 },
45 {
46 "name": "brandondewitt"
47 },
48 {
49 "name": "luk3thomas"
50 },
51 {
52 "name": "Marcel Klehr"
53 },
54 {
55 "name": "Raymond Feng"
56 },
57 {
58 "name": "Kane Cohen",
59 "email": "kanecohen@gmail.com"
60 },
61 {
62 "name": "Gianni Chiappetta",
63 "email": "gianni@runlevel6.org"
64 },
65 {
66 "name": "Eric Brody"
67 },
68 {
69 "name": "overlookmotel"
70 },
71 {
72 "name": "Patrick Mowrer"
73 },
74 {
75 "name": "Greger Olsson"
76 },
77 {
78 "name": "Jason Crawford",
79 "email": "jason@jasoncrawford.org"
80 },
81 {
82 "name": "Ray Myers",
83 "email": "ray.myers@gmail.com"
84 },
85 {
86 "name": "Dillon Shook",
87 "email": "dshook@alumni.nmt.edu"
88 },
89 {
90 "name": "Patrick Kuen",
91 "email": "p.kuen@cloudacy.com"
92 }
93 ],
94 "devDependencies": {
95 "typescript": "^5.2.2",
96 "vitest": "^0.34.5"
97 },
98 "main": "./lib/inflection.js",
99 "types": "./lib/inflection.d.ts",
100 "repository": {
101 "type": "git",
102 "url": "https://github.com/dreamerslab/node.inflection.git"
103 },
104 "engines": {
105 "node": ">=18.0.0"
106 },
107 "license": "MIT",
108 "scripts": {
109 "build": "tsc",
110 "test": "vitest",
111 "prepublishOnly": "npm run test -- --run && npm run build"
112 }
113}