forked from tchen0123/stringformatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.07 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
{
"name": "stringformatter",
"version": "0.1.4",
"description": "An extensible, garbage collecting Javascript string formatter that supports objects, currency, date/time, decimals, and more ... goes far beyond sprintf approach",
"main": "index.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha --report lcov -- -R spec",
"browserify": "browserify index.js -o browser/stringformatter.js",
"minify": "minify browser/stringformatter.js"
},
"repository": {
"type": "git",
"url": "https://github.com/anywhichway/stringformatter.git"
},
"keywords": [
"string",
"format",
"node.js",
"NodeJS"
],
"author": "Simon Y. Blackwell <[email protected]> (http://www.github.com/anywhichway)",
"license": "MIT",
"bugs": {
"url": "https://github.com/anywhichway/stringformatter/issues"
},
"dependencies": {},
"homepage": "https://github.com/anywhichway/stringformatter",
"devDependencies": {
"chai": "^3.4.1",
"codeclimate-test-reporter": "^0.3.0",
"istanbul": "^0.4.1",
"mocha": "^2.3.4"
}
}