UNPKG

@liquid-js/lit-ntml

Version:

Inspired by lit-html but for Node.js

77 lines 2.16 kB
{ "name": "@liquid-js/lit-ntml", "version": "0.4.3", "description": "Inspired by lit-html but for Node.js", "keywords": [ "html", "lit-ntml", "minify", "npm", "ntml", "parse-html", "prettify", "tagged-template-literals", "template", "templating" ], "homepage": "https://github.com/motss/lit-ntml", "license": "MIT", "author": "Rong Sen Ng <wes.ngrongsen@gmail.com> (https://github.com/motss)", "main": "./index.js", "repository": { "type": "git", "url": "git@github.com:motss/lit-ntml.git" }, "scripts": { "build": "yarn ts && cross-env NODE_ENV=production gulp build && yarn cleanup", "build:debug": "yarn ts && gulp build && yarn cleanup", "check": "yarn lint && yarn nsp", "cleanup": "rm -rf gulpfile.js", "demo": "node src/demo/", "gulp": "yarn ts && gulp", "lint": "yarn ts && cross-env NODE_ENV=production gulp lint && yarn cleanup", "nsp": "nsp check", "prepare": "yarn build", "prepublishOnly": "yarn run check && yarn build", "test": "jest --config ./.jestrc.json", "ts": "tsc --target esnext --lib esnext,esnext.asynciterable --module commonjs gulpfile.ts" }, "dependencies": { "html-minifier": "^3.5.10", "parse5": "^4.0.0", "pretty": "^2.0.0" }, "devDependencies": { "@types/html-minifier": "^3.5.1", "@types/jest": "^22.1.4", "@types/node": "^9.4.6", "@types/parse5": "^3.0.0", "babel-cli": "^6.26.0", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-preset-env": "^1.6.0", "babel-preset-minify": "^0.3.0", "cross-env": "^5.1.3", "del": "^3.0.0", "gulp": "^3.9.1", "gulp-babel": "^7.0.1", "gulp-sequence": "^1.0.0", "gulp-tslint": "^8.1.3", "gulp-typescript": "^3.2.4", "jest": "^22.4.2", "nsp": "^3.2.1", "ts-jest": "^22.4.1", "tslint": "^5.9.1", "tslint-config-airbnb": "^5.7.0", "tslint-consistent-codestyle": "^1.11.1", "tslint-immutable": "^4.5.2", "typescript": "^2.7.2" }, "engines": { "node": ">= 8.9.0", "npm": ">= 5.5.1" }, "files": [ "index.js", "index.d.ts" ] }