-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 2.21 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
{
"name": "thymeleaf",
"version": "0.22.0",
"description": "A basic implementation of the Thymeleaf templating engine in JavaScript",
"author": "Emanuel Rabina <emanuelrabina@gmail.com> (http://www.ultraq.net.nz/)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "/~https://github.com/ultraq/thymeleafjs"
},
"main": "lib/thymeleaf.node.cjs.js",
"module": "lib/thymeleaf.node.es.js",
"browser": {
"./lib/thymeleaf.node.es.js": "./lib/thymeleaf.browser.es.js",
"./lib/thymeleaf.node.cjs.js": "./lib/thymeleaf.browser.cjs.js"
},
"types": "types/Thymeleaf.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint \"**/*.js\"",
"test": "jest",
"build": "npm run build:browser && npm run build:node && npm run build:dist",
"build:browser": "cross-env BABEL_ENV=build ENVIRONMENT=browser rollup --config --bundleConfigAsCjs",
"build:node": "cross-env BABEL_ENV=build ENVIRONMENT=node rollup --config --bundleConfigAsCjs",
"build:dist": "cross-env BABEL_ENV=build rollup --config rollup.config.dist.js --bundleConfigAsCjs",
"build:dts": "tsc source/Thymeleaf.js --allowJs --declaration --emitDeclarationOnly --outDir types",
"watch": "chokidar \"source/**/*.js\" \"test/**/*.js\" -c \"npm run lint && npm test && npm run build\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.22.15",
"@ultraq/array-utils": "^3.0.1",
"@ultraq/dom-utils": "^0.5.0",
"@ultraq/string-utils": "^3.0.0",
"dumb-query-selector": "^3.3.0",
"jsdom": "^22.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
"@babel/eslint-plugin": "^7.22.10",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.5",
"chokidar-cli": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-ultraq": "^3.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"jest": "^29.7.0",
"rollup": "^3.29.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
}
}