package.json
1 { 2 "name": "sprintf-js", 3 "version": "1.0.3", 4 "description": "JavaScript sprintf implementation", 5 "author": "Alexandru Marasteanu <hello@alexei.ro> (http://alexei.ro/)", 6 "main": "src/sprintf.js", 7 "scripts": { 8 "test": "mocha test/test.js" 9 }, 10 "repository": { 11 "type": "git", 12 "url": "https://github.com/alexei/sprintf.js.git" 13 }, 14 "license": "BSD-3-Clause", 15 "readmeFilename": "README.md", 16 "devDependencies": { 17 "mocha": "*", 18 "grunt": "*", 19 "grunt-contrib-watch": "*", 20 "grunt-contrib-uglify": "*" 21 } 22 }