UNPKG

backtick-template

Version:
41 lines (40 loc) 1.25 kB
{ "name": "backtick-template", "version": "0.2.0", "description": "ES2015 backticks for ES3+ engines", "main": "cjs/index.js", "module": "esm/index.js", "unpkg": "min.js", "scripts": { "build": "npm run esm && npm run cjs && npm run min && npm test", "esm": "cp index.js esm/ && echo 'export default template;' >> esm/index.js", "cjs": "cp index.js cjs/ && echo 'module.exports = template;' >> cjs/index.js", "test": "istanbul cover test.js", "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c", "min": "uglifyjs index.js --comments=all --compress --mangle -o min.js", "coveralls": "cat ./coverage/lcov.info | coveralls" }, "repository": { "type": "git", "url": "git+https://github.com/WebReflection/backtick-template.git" }, "keywords": [ "backtick", "ES6", "ES2015", "string", "template" ], "author": "Andrea Giammarchi", "license": "MIT", "bugs": { "url": "https://github.com/WebReflection/backtick-template/issues" }, "homepage": "https://github.com/WebReflection/backtick-template#readme", "devDependencies": { "consolemd": "^0.2.1", "coveralls": "^3.0.2", "istanbul": "^0.4.5", "uglify-js": "^2.8.29" } }