-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "node-red-contrib-avr-pioneer",
"version": "0.0.0-development",
"description": "A collection of Node-RED nodes for controlling and observing Pioneer audio/video receivers.",
"main": "dist/pioneer-avr-config.js",
"files": [
"dist"
],
"keywords": [
"node-red",
"pioneer",
"avr",
"smart home",
"automation"
],
"scripts": {
"lint": "eslint --report-unused-disable-directives ./*.js ./src/*.js",
"fix": "eslint --fix ./*.js ./src/*.js",
"test": "npm run lint && echo \"No tests yet\"",
"dist-clean": "rm -rf dist",
"build": "webpack --config tooling/webpack.config.js",
"red": "node-red -v ~/.node-red/flows.json",
"build-red": "npm run build | sleep 2 && npm run red",
"dev": "nodemon --ext js,html,json --exec \"npm run build-red\" --ignore \"dist/\" ",
"semantic-release": "semantic-release",
"commitmsg": "commitlint -x \"@commitlint/config-conventional\" -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattmattmatt/node-red-contrib-avr-pioneer.git"
},
"author": "mattmattmatt",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattmattmatt/node-red-contrib-avr-pioneer/issues"
},
"homepage": "https://github.com/mattmattmatt/node-red-contrib-avr-pioneer#readme",
"node-red": {
"nodes": {
"pioneer-avr-config": "dist/pioneer-avr-config.js",
"pioneer-avr-out": "dist/pioneer-avr-out.js"
}
},
"eslintConfig": {
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"tabWidth": 4,
"printWidth": 100
}
]
}
},
"eslintIgnore": [
"dist/*"
],
"release": {
"dryRun": false,
"debug": true
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.9.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"nodemon": "^1.17.3",
"prettier": "^1.15.3",
"semantic-release": "^15.12.3",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {}
}