-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 955 Bytes
/
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
{
"name": "string-humanize",
"version": "1.0.1",
"description": "Transforms the input into a human friendly string.",
"main": "index.js",
"scripts": {
"test": "tape test-humanize.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jxson/string-humanize.git"
},
"keywords": [
"string",
"strings",
"string.js",
"trim",
"capitalize",
"humanize"
],
"author": "Jason Campbell <[email protected]> (http://artifact.sh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jxson/string-humanize/issues"
},
"testling": {
"files": "test-humanize.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"devDependencies": {
"tape": "^4.9.1"
},
"dependencies": {
"string-capitalize": "~1.0.1"
}
}