-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.59 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "liquidscript",
"version": "1.8.2",
"author": "James",
"license": "MIT",
"homepage": "https://jg-rp.github.io/liquidscript/",
"bugs": {
"url": "https://github.com/jg-rp/liquidscript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jg-rp/liquidscript.git"
},
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"format": "prettier --write ./src/**/*.ts",
"format:check": "prettier --list-different ./src/**/*.ts",
"lint": "eslint src tests",
"test": "jest",
"coverage": "jest --collectCoverage",
"clean": "rm -rf ./lib ./dist ./coverage",
"benchmark": "yarn run build && cd benchmark && yarn node index.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"prepublish": "npm run build"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions",
"not node 12"
],
"main": "dist/liquidscript.cjs.js",
"module": "dist/liquidscript.esm.js",
"browser": "dist/liquidscript.iife.js",
"browser-min": "dist/liquidscript.iife.min.js",
"browser-bundle": "dist/liquidscript.iife.bundle.js",
"browser-bundle-min": "dist/liquidscript.iife.bundle.min.js",
"jsdelivr": "dist/liquidscript.iife.bundle.min.js",
"types": "dist/liquidscript.d.ts",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.10",
"@types/rewire": "^2.5.30",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-sonarjs": "^1.0.3",
"globals": "^15.8.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"rollup": "^4.18.1",
"ts-jest": "^29.2.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
},
"dependencies": {
"decimal.js": "^10.4.3",
"luxon": "^3.3.0"
},
"keywords": [
"liquid",
"templates",
"template engine",
"parse",
"render",
"shopify"
]
}