-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "ha-nunjucks",
"version": "1.3.0",
"description": "Wrapper for nunjucks for use with Home Assistant frontend custom components to render templates",
"main": "./dist/index.js",
"files": [
"dist/**"
],
"type": "module",
"scripts": {
"test": "ts-mocha 'tests/**/*.test.ts'",
"build": "tsc",
"prelint": "tsc --noemit",
"lint": "eslint --config ./.eslintrc.config.cjs"
},
"lint-staged": {
"*": "prettier -w"
},
"author": "Nerwyn",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Nerwyn/ha-nunjucks.git"
},
"bugs": {
"url": "https://github.com/Nerwyn/ha-nunjucks/issues"
},
"homepage": "https://github.com/Nerwyn/ha-nunjucks#readme",
"dependencies": {
"home-assistant-js-websocket": "latest",
"nunjucks": "latest",
"ts-py-datetime": "latest"
},
"devDependencies": {
"@types/mocha": "latest",
"@types/nunjucks": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"lint-staged": "latest",
"prettier": "latest",
"prettier-plugin-organize-imports": "latest",
"ts-loader": "latest",
"ts-mocha": "latest",
"ts-node": "latest",
"tsx": "latest",
"typescript": "latest"
}
}