forked from davidchambers/string-format
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
23 lines (23 loc) · 754 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
{
"name": "string-format",
"version": "0.2.1",
"description": "Adds a `format` method to `String.prototype`. Inspired by Python's `str.format()`.",
"author": "David Chambers <dc@hashify.me>",
"keywords": ["string", "formatting", "language", "util"],
"main": "./lib/string-format",
"homepage": "https://github.com/davidchambers/string-format",
"bugs": "https://github.com/davidchambers/string-format/issues",
"licenses": [{
"type": "WTFPL",
"url": "https://raw.github.com/davidchambers/string-format/master/LICENSE"
}],
"repository": {
"type": "git",
"url": "git://github.com/davidchambers/string-format.git"
},
"devDependencies": {
"coffee-script": "1.4.x",
"mocha": "1.7.x",
"should": "1.2.x"
}
}