-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.81 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
{
"name": "node-red-contrib-intexspa",
"version": "2.1.0",
"description": "Intex SPA nodes for Node-RED.",
"keywords": [
"node-red",
"node-red-contrib",
"intexspa",
"hottub"
],
"scripts": {
"add-node": "node ./.utils/template/add-node.js",
"build": "npm-run-all build:purge build:copy build:bundle build:compile build:example",
"build:purge": "del-cli --force dist",
"build:copy": "copyfiles -u 2 \"./src/nodes/**/*.{png,svg}\" \"./dist/nodes/\"",
"build:bundle": "rollup -c ./.utils/bundle/rollup.config.editor.js",
"build:compile": "tsc",
"build:example": "copyfiles -u 2 \"./src/examples/*.json\" \"./dist/examples/\"",
"lint": "npm-run-all lint:prettier lint:eslint",
"lint:prettier": "prettier --ignore-path .eslintignore --check \"**/*.{js,ts,md}\"",
"lint:eslint": "eslint --ext .js,.ts .",
"fix": "npm-run-all fix:prettier fix:eslint",
"fix:prettier": "prettier --ignore-path .eslintignore --write \"**/*.{js,ts,md}\"",
"fix:eslint": "eslint --ext .js,.ts . --fix",
"preversion": "npm-run-all lint",
"version": "npm-run-all version:changelog version:stage",
"version:changelog": "replace-in-file \"Unreleased\" \"%npm_package_version%\" CHANGELOG.md",
"version:stage": "git add -A",
"postversion": "npm-run-all postversion:push postversion:pushtag",
"postversion:push": "git push",
"postversion:pushtag": "git push --tags",
"prepublishOnly": "npm-run-all build lint"
},
"author": "Claudio Spizzi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/claudiospizzi/node-red-contrib-intexspa.git"
},
"bugs": {
"url": "https://github.com/claudiospizzi/node-red-contrib-intexspa/issues"
},
"homepage": "https://github.com/claudiospizzi/node-red-contrib-intexspa#readme",
"engines": {
"node": ">=12.0.0"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"intexspa-config": "./dist/nodes/intexspa-config/intexspa-config.js",
"intexspa-status": "./dist/nodes/intexspa-status/intexspa-status.js",
"intexspa-action": "./dist/nodes/intexspa-action/intexspa-action.js"
}
},
"dependencies": {
"axios": "^0.26.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/node-red": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"colorette": "^1.4.0",
"copyfiles": "^2.4.1",
"del-cli": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin": "^1.0.1",
"eslint-plugin-prettier": "^3.4.1",
"keyv": "^4.1.1",
"mustache": "^4.2.0",
"node-red": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"replace-in-file": "^6.3.2",
"rollup": "^2.70.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
}
}