-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.97 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 1.97 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
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
{
"name": "@waldbaer/node-red-persistent-values",
"version": "1.6.1",
"description": "A user-friendly abstraction of the Node-RED context stores.",
"author": "waldbaer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/waldbaer/node-red-persistent-values.git"
},
"keywords": [
"node-red",
"context",
"persistence",
"persistency",
"state",
"config",
"storage"
],
"node-red": {
"version": ">=1.3.0",
"nodes": {
"persistent values config": "nodes/persistent-values-config.js",
"persistent value": "nodes/persistent-value.js"
}
},
"engines": {
"node": ">=8"
},
"dependencies": {
"uuid": "13.0.0"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-config-google": "0.14.0",
"eslint-plugin-html": "8.1.3",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-promise": "7.2.1",
"mocha": "11.7.4",
"mocha-suppress-logs": "0.6.0",
"node-red": "4.1.1",
"node-red-dev": "0.1.6",
"node-red-node-test-helper": "0.3.5",
"nyc": "17.1.0"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"google"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"require-jsdoc": "off",
"max-len": [
2,
{
"code": 140,
"tabWidth": 2,
"ignoreUrls": true
}
],
"indent": [
"error",
2
]
},
"plugins": [
"html"
]
},
"nyc": {
"check-coverage": true,
"reporter": ["lcov", "text", "text-summary"],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\"",
"coverage": "nyc npm test",
"lint": "eslint --ext .js,.html nodes resources test",
"node-red-dev-validate": "node-red-dev validate -p ."
}
}