-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 852 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
{
"name": "fast-format",
"version": "0.2.0",
"description": "A fast, simple string formatter like util.format() method in Node.js",
"main": "fast-format.js",
"directories": {
"test": "test"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^2.5.3",
"mocha-phantomjs": "^4.1.0"
},
"scripts": {
"test": "mocha test/test.js && mocha-phantomjs test/test.html",
"compile": "./compile.sh fast-format.js fast-format.min.js"
},
"keywords": [
"fast",
"util",
"format",
"sprintf"
],
"author": "KNOWLEDECODE",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/knowledgecode/fast-format.git"
},
"bugs": {
"url": "https://github.com/knowledgecode/fast-format/issues"
},
"homepage": "https://github.com/knowledgecode/fast-format#readme"
}