-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "node-red-contrib-parser-ini",
"version": "0.5.1",
"description": "Node-RED node to parse/serialize INI configuration files",
"keywords": [
"ini",
"configuration",
"parser",
"serializer",
"reader",
"writer",
"node-red",
"nodered"
],
"engines": {
"node": ">=14"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"parser-ini": "parser-ini.js"
}
},
"author": {
"name": "Alexandre Alapetite",
"url": "https://alexandra.dk/alexandre.alapetite"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexandrainst/node-red-contrib-parser-ini.git"
},
"dependencies": {
"ini": "^5.0.0"
},
"devDependencies": {
"eslint": "^9.8.0",
"@eslint/js": "^9.8.0",
"eslint-plugin-html": "^8.1.1",
"globals": "^15.9.0",
"markdownlint-cli": "^0.43.0",
"neostandard": "^0.12.0"
},
"scripts": {
"eslint": "eslint .",
"eslint_fix": "eslint --fix .",
"markdownlint": "markdownlint '**/*.md'",
"markdownlint_fix": "markdownlint --fix '**/*.md'",
"fix": "npm run rtlcss && npm run eslint_fix && npm run markdownlint_fix",
"pretest": "npm run eslint && npm run markdownlint",
"start": "node ./index.js",
"test": "npm -v"
}
}