forked from pascalre/homeassistant-js-yaml-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1019 Bytes
/
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
{
"name": "homeassistant-js-yaml-schema",
"version": "1.0.0",
"description": "Schema to ignore Home Assistent YAML local tags while parsing or dumping",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "node src/test/test.js",
"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"
],
"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.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4"
}
}