brazejs
Version:
Liquid template engine for the Braze variant by pure JavaScript: compatible to Braze, easy to extend.
118 lines (117 loc) • 3.43 kB
JSON
{
"name": "brazejs",
"version": "1.7.1",
"description": "Liquid template engine for the Braze variant by pure JavaScript: compatible to Braze, easy to extend.",
"main": "dist/liquid.common.js",
"types": "dist/liquid.d.ts",
"browser": "dist/liquid.js",
"scripts": {
"lint": "eslint . --ext .ts",
"unit": "mocha \"test/unit/**/*.ts\"",
"integration": "mocha \"test/integration/**/*.ts\"",
"e2e": "npm run build && mocha \"test/e2e/**/*.ts\"",
"test": "npm run build && mocha \"test/**/*.ts\"",
"benchmark": "ts-node benchmark",
"coverage-html": "nyc --reporter=html mocha \"test/{unit,integration}/**/*.ts\"",
"coverage-coveralls": "nyc mocha \"test/{unit,integration}/**/*.ts\" && nyc report --reporter=text-lcov | coveralls",
"build": "rollup -c rollup.config.ts && ls -lh dist",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yq314/brazejs.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=4.8.7"
},
"keywords": [
"liquid",
"template engine",
"braze"
],
"author": "QingYE",
"license": "MIT",
"bugs": {
"url": "https://github.com/yq314/brazejs/issues"
},
"homepage": "https://github.com/yq314/brazejs#readme",
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.16.1",
"@types/jsdom": "^12.2.2",
"@types/mocha": "^5.2.6",
"@types/nock": "^10.0.0",
"@types/sinon": "^7.0.6",
"@types/sinon-chai": "^3.2.2",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^3.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-utils": "^1.4.2",
"express": "^4.16.4",
"jsdom": "^13.2.0",
"minimist": "^1.2.5",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.0",
"regenerator-runtime": "^0.12.1",
"rollup": "^1.1.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-typescript2": "^0.21.0",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.2.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"supertest": "^3.4.2",
"ts-node": "^8.0.2",
"tslib": "^1.9.3",
"typescript": "^3.3.3"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"request-promise-cache": "^2.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}