Skip to content
Snippets Groups Projects
Commit 8fd94921 authored by Alexander Repeta's avatar Alexander Repeta
Browse files

add support for handlebars templating

parent 0cdf2940
No related branches found
No related tags found
No related merge requests found
......@@ -3497,6 +3497,19 @@
"unicode-trie": "^0.3.1"
}
},
"handlebars": {
"version": "4.7.7",
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz",
"integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==",
"dev": true,
"requires": {
"minimist": "^1.2.5",
"neo-async": "^2.6.0",
"source-map": "^0.6.1",
"uglify-js": "^3.1.4",
"wordwrap": "^1.0.0"
}
},
"har-schema": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
......@@ -4631,6 +4644,12 @@
"to-regex": "^3.0.1"
}
},
"neo-async": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
"dev": true
},
"nice-try": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
......@@ -5010,6 +5029,16 @@
}
}
},
"parcel-plugin-handlebars-precompile": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/parcel-plugin-handlebars-precompile/-/parcel-plugin-handlebars-precompile-1.0.2.tgz",
"integrity": "sha512-oSZMqFRKWvJ/sbn7GN9JL4f4e0HvtIumeRlXd8qVUOj0BFQIArUrNQn03o24hc6AMdP70ZjR9ial34RJ8QCGuw==",
"dev": true,
"requires": {
"handlebars": "^4.7.3",
"parcel-bundler": "^1.12.4"
}
},
"parse-asn1": {
"version": "5.1.6",
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz",
......@@ -7157,6 +7186,13 @@
"integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
"dev": true
},
"uglify-js": {
"version": "3.13.4",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.4.tgz",
"integrity": "sha512-kv7fCkIXyQIilD5/yQy8O+uagsYIOt5cZvs890W40/e/rvjMSzJw81o9Bg0tkURxzZBROtDQhW2LFjOGoK3RZw==",
"dev": true,
"optional": true
},
"unbox-primitive": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
......@@ -7529,6 +7565,12 @@
"integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
"dev": true
},
"wordwrap": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
"integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
"dev": true
},
"wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
......
......@@ -21,6 +21,7 @@
"devDependencies": {
"gh-pages": "^3.1.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-handlebars-precompile": "^1.0.2",
"posthtml-include": "^1.6.2",
"sass": "^1.32.8"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment