-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 943 Bytes
/
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
{
"name": "node-red-contrib-random-item",
"version": "1.0.3",
"description": "Node-RED node that randomly selects an item of an array",
"main": "random-item.js",
"scripts": {
"dev": "nodemon --exec node-red -u ~/.node-red",
"lint": "eslint . && prettier --check **/*.{css,js,md,html}",
"lint:fix": "eslint . --fix && prettier --write **/*.{css,js,md,html}",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jason Zachow",
"license": "MIT",
"keywords": [
"node-red",
"random"
],
"node-red": {
"nodes": {
"random-item": "random-item.js"
}
},
"repository": "https://github.com/zachowj/node-red-contrib-random-item.git",
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.5",
"prettier": "^2.1.1"
},
"dependencies": {
"lodash.samplesize": "^4.2.0"
}
}