mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
103 lines
2.9 KiB
JSON
103 lines
2.9 KiB
JSON
{
|
|
"name": "liquidjs",
|
|
"version": "7.2.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 'test/unit/**/*.ts'",
|
|
"e2e": "npm run build && mocha 'test/e2e/**/*.ts'",
|
|
"test": "npm run unit && npm run e2e",
|
|
"coverage-html": "nyc npm run unit && nyc report --reporter=html",
|
|
"coverage-coveralls": "nyc npm run unit && nyc report --reporter=text-lcov | coveralls",
|
|
"build": "rollup -c rollup.config.ts && ls -lh dist",
|
|
"version": "npm run build && git add -A dist"
|
|
},
|
|
"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/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",
|
|
"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",
|
|
"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",
|
|
"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"
|
|
]
|
|
}
|
|
}
|