-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
35 lines (35 loc) · 874 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
{
"name": "string-format",
"version": "2.0.0",
"description": "String formatting inspired by Python's str.format()",
"author": "David Chambers <[email protected]>",
"keywords": [
"string",
"formatting",
"language",
"util"
],
"homepage": "https://github.com/davidchambers/string-format",
"bugs": "https://github.com/davidchambers/string-format/issues",
"license": "WTFPL OR MIT",
"repository": {
"type": "git",
"url": "git://github.com/davidchambers/string-format.git"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"package.json"
],
"dependencies": {},
"devDependencies": {
"sanctuary-scripts": "3.2.x"
},
"scripts": {
"doctest": "sanctuary-doctest",
"lint": "sanctuary-lint",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest"
}
}