-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 KB
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
{
"name": "homeassistant-js-yaml-schema",
"version": "1.1.1",
"description": "Schema to allow js-yaml to process YAML formatted Home Assistent templates that use Home Assistent specific local tags while parsing or dumping.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --ext .js",
"lint-fix": "eslint --fix . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pascalre/homeassistant-js-yaml-schema.git"
},
"keywords": [
"homeassistant",
"js-yaml",
"yaml",
"parser",
"schema"
],
"author": "Pascal Reitermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/pascalre/homeassistant-js-yaml-schema/issues"
},
"homepage": "https://github.com/pascalre/homeassistant-js-yaml-schema#readme",
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.0.0"
}
}