squirrelly
Version:
Lightweight, fast, and powerful JS template engine. Supports helpers, filters, template inheritance
154 lines (153 loc) • 4.16 kB
JSON
{
"name": "squirrelly",
"version": "9.0.0",
"description": "Lightweight, fast, and powerful JS template engine. Supports helpers, filters, template inheritance",
"keywords": [
"squirrelly",
"helpers",
"template inheritance",
"handlebars",
"ejs",
"template engine",
"typescript types"
],
"homepage": "https://squirrelly.js.org",
"main": "dist/squirrelly.cjs.js",
"browser": "dist/browser/squirrelly.min.js",
"module": "dist/squirrelly.es.js",
"typings": "dist/types/index.d.ts",
"jsdelivr": "dist/browser/squirrelly.min.js",
"unpkg": "dist/browser/squirrelly.min.js",
"runkitExampleFilename": "examples/runkit.js",
"sideEffects": false,
"files": [
"dist",
"examples"
],
"author": "Ben Gubler <nebrelbug@gmail.com>",
"funding": "https://github.com/squirrellyjs/squirrelly?sponsor=1",
"repository": {
"type": "git",
"url": "git+https://github.com/squirrellyjs/squirrelly.git"
},
"bugs": {
"url": "https://github.com/squirrellyjs/squirrelly/issues"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint src/*.ts test/*.spec.ts examples/* --ext .js,.ts",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts && typedoc --out docs --target es6 --mode modules src",
"release": "npm run build && np",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"travis-deploy-once": "travis-deploy-once --pro",
"format": "prettier-standard --format '{src,test}/**/*.ts'"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"eslint"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/{!(browser),}.ts"
]
},
"standard": {
"ignore": [
"dist"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^26.0.12",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "^4.0.1",
"colors": "^1.4.0",
"commitizen": "^4.2.1",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-config": "^26.4.2",
"lint-staged": "^10.2.13",
"np": "^6.5.0",
"prettier-standard": "^16.4.1",
"prompt": "^1.0.0",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.26.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-prettier": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.2",
"shelljs": "^0.8.4",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}