-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1008 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "liquidless",
"version": "1.3.4",
"description": "Shopify's Liquid template engine, but less powerful",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"test": "vitest --coverage",
"test:ui": "vitest --coverage --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stepci/liquidless.git"
},
"keywords": [
"liquid",
"shopify",
"template"
],
"author": "Mish Ushakov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stepci/liquidless/issues"
},
"homepage": "https://github.com/stepci",
"dependencies": {
"flat": "^5.0.2",
"json5": "^2.2.3"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/flat": "^5.0.2",
"@types/node": "^18.7.18",
"@vitest/coverage-v8": "^1.1.3",
"@vitest/ui": "^1.1.3",
"typescript": "^4.8.3",
"vitest": "^1.1.3"
}
}