-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "home-assistant-javascript-templates",
"version": "5.7.0",
"description": "A JavaScript utility to render Home Assistant JavaScript templates",
"keywords": [
"home-assistant",
"templates",
"js-templates",
"javascript-templates",
"library"
],
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"files": [
"dist/**/*"
],
"author": "ElChiniNet",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/elchininet/home-assistant-javascript-templates"
},
"private": false,
"scripts": {
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"test:ts": "tsc --noEmit",
"test:unit": "jest --verbose",
"test:all": "pnpm test:ts && pnpm test:unit",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test:all",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"get-promisable-result": "^1.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-location-mock": "^2.0.0",
"rollup": "^4.35.0",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.2.6",
"tslib": "^2.8.1",
"typescript": "^5.8.2"
},
"dependencies": {
"get-promisable-result": "^1.0.0"
}
}