forked from dreamerslab/node.inflection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.68 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
{
"name" : "inflection",
"version" : "1.12.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]" }
],
"dependencies" : {},
"devDependencies": {
"mocha" : "3.2.0",
"should": "11.2.0"
},
"main" : "./lib/inflection.js",
"repository": {
"type": "git",
"url" : "https://github.com/dreamerslab/node.inflection.git"
},
"engines" : [ "node >= 0.4.0" ],
"license": "MIT",
"scripts": {
"test" : "mocha -R spec"
}
}