-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
58 lines (58 loc) · 1.23 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
{
"name": "case",
"description": "Extensible string utility for converting, identifying and flipping string case",
"keywords": [
"string",
"case",
"camel",
"title",
"upper",
"lower",
"snake",
"squish",
"pascal",
"constant",
"flip",
"capitalization",
"converter"
],
"version": "1.6.3",
"author": {
"name": "Nathan Bubna",
"email": "[email protected]",
"url": "http://www.esha.com/"
},
"engines": {
"node": ">= 0.8.0"
},
"files": [
"dist",
"case.d.ts"
],
"main": "dist/Case.js",
"bugs": {
"url": "http://github.com/nbubna/Case/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "http://github.com/nbubna/Case.git"
},
"license": "(MIT OR GPL-3.0-or-later)",
"scripts": {
"test": "grunt qunit"
},
"devDependencies": {
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-component-build": "^0.5.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-nuget": "~0.3.1"
},
"typings": "case.d.ts"
}