UNPKG

4.62 kBJSONView Raw
1{
2 "name": "liquidjs",
3 "version": "9.37.0",
4 "description": "A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.",
5 "main": "dist/liquid.node.cjs.js",
6 "module": "dist/liquid.node.esm.js",
7 "es2015": "dist/liquid.browser.esm.js",
8 "browser": {
9 "./dist/liquid.node.cjs.js": "./dist/liquid.browser.umd.js",
10 "./dist/liquid.node.esm.js": "./dist/liquid.browser.esm.js"
11 },
12 "types": "dist/liquid.d.ts",
13 "scripts": {
14 "lint": "eslint \"**/*.ts\" .",
15 "check": "npm run build && npm test && npm run lint && npm run perf:diff",
16 "test": "nyc mocha \"test/**/*.ts\"",
17 "test:e2e": "mocha \"test/e2e/**/*.ts\"",
18 "perf": "cd benchmark && npm ci && npm start",
19 "perf:diff": "bin/perf-diff.sh",
20 "perf:engines": "cd benchmark && npm run engines",
21 "postversion": "npm run build:dist",
22 "build": "npm run build:dist && npm run build:docs",
23 "build:dist": "rollup -c rollup.config.ts",
24 "build:docs": "bin/build-docs.sh"
25 },
26 "bin": {
27 "liquidjs": "./bin/liquid.js",
28 "liquid": "./bin/liquid.js"
29 },
30 "repository": {
31 "type": "git",
32 "url": "git+https://github.com/harttle/liquidjs.git"
33 },
34 "funding": {
35 "type": "opencollective",
36 "url": "https://opencollective.com/liquidjs"
37 },
38 "files": [
39 "bin/liquid.js",
40 "dist",
41 "LICENSE",
42 "README.md"
43 ],
44 "engines": {
45 "node": ">=4.8.7"
46 },
47 "keywords": [
48 "liquid",
49 "template engine",
50 "express",
51 "jinja",
52 "shopify"
53 ],
54 "author": "Harttle",
55 "license": "MIT",
56 "bugs": {
57 "url": "https://github.com/harttle/liquidjs/issues"
58 },
59 "homepage": "https://github.com/harttle/liquidjs#readme",
60 "devDependencies": {
61 "@commitlint/cli": "^12.1.4",
62 "@commitlint/config-conventional": "^8.2.0",
63 "@semantic-release/changelog": "^3.0.2",
64 "@semantic-release/commit-analyzer": "^6.1.0",
65 "@semantic-release/git": "^7.0.8",
66 "@semantic-release/npm": "^5.1.8",
67 "@semantic-release/release-notes-generator": "^7.1.4",
68 "@types/benchmark": "^1.0.31",
69 "@types/chai": "^4.1.7",
70 "@types/chai-as-promised": "^7.1.0",
71 "@types/express": "^4.17.2",
72 "@types/jsdom": "^12.2.2",
73 "@types/mocha": "^5.2.6",
74 "@types/sinon": "^7.0.6",
75 "@types/sinon-chai": "^3.2.2",
76 "@types/supertest": "^2.0.7",
77 "@typescript-eslint/eslint-plugin": "^5.6.0",
78 "@typescript-eslint/parser": "^5.6.0",
79 "all-contributors-cli": "^6.20.0",
80 "benchmark": "^2.1.4",
81 "chai": "^4.2.0",
82 "chai-as-promised": "^7.1.1",
83 "coveralls": "^3.0.2",
84 "cross-env": "^5.2.0",
85 "eslint": "^7.32.0",
86 "eslint-config-standard": "^12.0.0",
87 "eslint-plugin-import": "^2.15.0",
88 "eslint-plugin-mocha": "^5.3.0",
89 "eslint-plugin-node": "^8.0.1",
90 "eslint-plugin-promise": "^4.0.1",
91 "eslint-plugin-standard": "^4.0.0",
92 "express": "^4.16.4",
93 "husky": "^4.2.5",
94 "jsdom": "^13.2.0",
95 "mocha": "^9.0.1",
96 "nyc": "^15.1.0",
97 "regenerator-runtime": "^0.12.1",
98 "rollup": "^2.61.0",
99 "rollup-plugin-replace": "^2.1.0",
100 "rollup-plugin-typescript2": "^0.31.1",
101 "rollup-plugin-uglify": "^5.0.2",
102 "rollup-plugin-version-injector": "^1.3.3",
103 "semantic-release": "^17.2.3",
104 "sinon": "^7.5.0",
105 "sinon-chai": "^3.3.0",
106 "supertest": "^3.4.2",
107 "ts-node": "^8.0.2",
108 "tslib": "^2.3.1",
109 "typedoc": "^0.19.2",
110 "typedoc-plugin-markdown": "^2.2.17",
111 "typescript": "^4.5.3"
112 },
113 "release": {
114 "branch": "master",
115 "plugins": [
116 "@semantic-release/commit-analyzer",
117 "@semantic-release/release-notes-generator",
118 "@semantic-release/changelog",
119 "@semantic-release/npm",
120 [
121 "@semantic-release/git",
122 {
123 "assets": [
124 "package.json",
125 "package-lock.json",
126 "CHANGELOG.md"
127 ],
128 "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
129 }
130 ],
131 [
132 "@semantic-release/github",
133 {
134 "assets": [
135 {
136 "path": "dist/*.umd.js",
137 "label": "liquid.js"
138 },
139 {
140 "path": "dist/*.min.js",
141 "label": "liquid.min.js"
142 },
143 {
144 "path": "dist/*.min.js.map",
145 "label": "liquid.min.js.map"
146 }
147 ]
148 }
149 ]
150 ]
151 },
152 "nyc": {
153 "extension": [
154 ".ts"
155 ]
156 },
157 "husky": {
158 "hooks": {
159 "pre-commit": "npm run check",
160 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
161 }
162 },
163 "dependencies": {}
164}