-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.22 KB
/
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
36
37
38
39
40
{
"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"
}
}