UNPKG

@tmorin/ceb-templating-literal

Version:

The package is part of the `<ceb/>` library. It provides the implementation of a templating solution which leverages on the vanilla string literals.

66 lines (65 loc) 2.01 kB
{ "name": "@tmorin/ceb-templating-literal", "version": "7.0.0", "license": "MIT", "description": "The package is part of the `<ceb/>` library. It provides the implementation of a templating solution which leverages on the vanilla string literals.", "keywords": [ "custom-element-builder", "custom-elements-v1", "custom-elements", "custom-element", "typescript", "typescript-library", "javascript-library", "template", "template-engine", "template-literal" ], "homepage": "https://tmorin.github.io/ceb", "bugs": { "url": "https://github.com/tmorin/ceb/issues" }, "repository": { "type": "git", "url": "git@github.com:tmorin/ceb.git" }, "author": { "name": "Thibault Morin", "url": "https://tmorin.github.io" }, "publishConfig": { "access": "public" }, "exports": { ".": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.js", "default": "./dist/mjs/index.js" } }, "types": "dist/types/index.d.ts", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", "files": [ "dist", "README.md" ], "scripts": { "build": "npm run build:lib && npm run build:module && npm run build:fix", "build:fix": "../../scripts/fix-dist.js", "build:lib": "tsc -p tsconfig.build.json --module CommonJS --outDir dist/cjs --declaration --declarationDir dist/types", "build:module": "tsc -p tsconfig.build.json --module ESNext --outDir dist/mjs", "test": "karma start --single-run --no-auto-watch --browsers FirefoxHeadless,ChromeHeadless", "test:watch": "karma start --no-single-run --auto-watch --browsers Firefox" }, "dependencies": { "@tmorin/ceb-templating-builder": "^7.0.0", "@tmorin/ceb-templating-engine": "^7.0.0", "@tmorin/ceb-templating-parser": "^7.0.0", "@tmorin/ceb-utilities": "^7.0.0" }, "devDependencies": { "@tmorin/ceb-elements-core": "^7.0.0" }, "gitHead": "94ca5cb8891ed6e4980cf0dffc643ba7eeafd08e" }