forked from taijinlee/humanize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 823 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
{
"name": "humanize",
"description": "Javascript string formatter for human readability",
"homepage": "https://github.com/taijinlee/humanize",
"keywords": [
"util",
"client",
"browser"
],
"author": {
"name": "Tai-Jin Lee",
"email": "taijin@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/taijinlee/humanize.git"
},
"main": "humanize.js",
"version": "0.0.9",
"dependencies": {},
"devDependencies": {
"mocha": "1.0.3",
"should": "0.6.3",
"jshint": "0.7.1"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"scripts": {
"test": "./node_modules/jshint/bin/hint humanize.js; find specs -type f -a -name *.spec.js -exec ./node_modules/mocha/bin/mocha --globals requirejsVars -R list --require should {} \\;"
}
}