-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "nrlint",
"version": "1.2.0",
"description": "Linter for Node-RED flows",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/nrlint.git"
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Kunihiko Toumura"
}
],
"bin": {
"nrlint": "bin/nrlint.js"
},
"scripts": {
"build": "npm run build-workers && node scripts/build.js",
"build-workers": "webpack -c ./webpack.config.js"
},
"files": [
"lib",
"dist",
"resources",
"!src",
"!scripts",
"!webpack.config.js"
],
"node-red": {
"plugins": {
"nrlint": "dist/nrlint-core.js",
"nrlint-rules": "dist/nrlint-rules.html",
"nrlint-rules-eslint": "dist/nrlint-rules-function-eslint.html"
}
},
"devDependencies": {
"chai": "^4.4.1",
"fs-extra": "^10.1.0",
"html-minifier": "^4.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@node-red/flow-parser": "^1.0.2",
"eslint-linter-browserify": "^8.57.0",
"nopt": "^6.0.0",
"table": "^6.8.1"
},
"engines": {
"node": ">=10.13.0"
}
}