mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
87 lines
2.6 KiB
JSON
87 lines
2.6 KiB
JSON
{
|
|
"name": "liquidjs",
|
|
"version": "7.0.0",
|
|
"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 --ext .js",
|
|
"unit": "mocha -r ts-node/register -r tsconfig-paths/register test/unit/**.ts",
|
|
"e2e": "npm run build && mocha -r ts-node/register -r tsconfig-paths/register test/e2e/**/*.ts",
|
|
"test": "npm run unit && npm run e2e",
|
|
"coverage": "nyc --reporter=html npm run unit",
|
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
"build": "rollup -c && ls -lh dist",
|
|
"version": "npm run build && git add -A dist"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/harttle/liquidjs.git"
|
|
},
|
|
"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/jsdom": "^12.2.2",
|
|
"@types/mocha": "^5.2.6",
|
|
"@typescript-eslint/eslint-plugin": "^1.3.0",
|
|
"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.2.1",
|
|
"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",
|
|
"mock-fs": "^4.7.0",
|
|
"nyc": "^13.1.0",
|
|
"regenerator-runtime": "^0.12.1",
|
|
"rollup": "^1.1.2",
|
|
"rollup-plugin-shim": "^1.0.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",
|
|
"tsconfig-paths": "^3.8.0",
|
|
"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"
|
|
]
|
|
}
|
|
}
|