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
| {
| "name": "sprintf",
| "version": "0.1.5",
| "engines": {
| "node" : ">=0.2.4"
| },
| "author": "Moritz Peters",
| "directories": {
| "lib": "./lib"
| },
| "description": "Sprintf() for node.js",
| "main": "./lib/sprintf",
| "homepage": "https://github.com/maritz/node-sprintf",
| "repository": {
| "type": "git",
| "url": "https://github.com/maritz/node-sprintf.git"
| },
| "license": "BSD-3-Clause",
| "scripts": {
| "test": "nodeunit test/function-export.js"
| },
| "devDependencies": {
| "nodeunit": "0.8.0"
| }
| }
|
|