mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
## [8.0.1](https://github.com/harttle/liquidjs/compare/v8.0.0...v8.0.1) (2019-03-22)
### Bug Fixes
* incorrect scope when using assign with for, fixes [#115](https://github.com/harttle/liquidjs/issues/115) ([defbb58](https://github.com/harttle/liquidjs/commit/defbb58))
107 lines
3.1 KiB
JSON
107 lines
3.1 KiB
JSON
{
|
|
"name": "liquidjs",
|
|
"version": "8.0.1",
|
|
"description": "Liquid template engine by pure JavaScript: compatible to shopify, 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/harttle/liquidjs.git"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=4.8.7"
|
|
},
|
|
"keywords": [
|
|
"liquid",
|
|
"template engine",
|
|
"express",
|
|
"jinja",
|
|
"shopify"
|
|
],
|
|
"author": "Harttle",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/harttle/liquidjs/issues"
|
|
},
|
|
"homepage": "https://github.com/harttle/liquidjs#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.4",
|
|
"@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/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",
|
|
"coveralls": "^3.0.2",
|
|
"cross-env": "^5.2.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",
|
|
"express": "^4.16.4",
|
|
"jsdom": "^13.2.0",
|
|
"mocha": "^5.2.0",
|
|
"nyc": "^13.1.0",
|
|
"regenerator-runtime": "^0.12.1",
|
|
"rollup": "^1.1.2",
|
|
"rollup-plugin-replace": "^2.1.0",
|
|
"rollup-plugin-typescript2": "^0.19.2",
|
|
"rollup-plugin-uglify": "^6.0.2",
|
|
"semantic-release": "^15.13.3",
|
|
"sinon": "^7.2.3",
|
|
"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": {}
|
|
}
|