-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "node-red-node-discord",
"author": {
"name": "Gago Muradyan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madmax3365/node-red-node-discord.git"
},
"version": "2.2.0",
"scripts": {
"build": "npm run copyHtml && npm run copyIcons && tsc ",
"copyHtml": "mkdir -p dist/nodes/ && cp -a src/nodes/*.html dist/nodes/",
"copyIcons": "mkdir -p dist/nodes/icons && cp -a src/nodes/icons/. dist/nodes/icons",
"lint": "tslint --project ./",
"pretest": "tsc",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,e2e,cypress}/**/*.{ts,json,md,scss}": [
"prettier --write",
"git add"
]
},
"bugs": {},
"bundleDependencies": [],
"deprecated": false,
"description": "Discord nodes for recieving / sending messages.",
"keywords": [
"node-red",
"discord"
],
"license": "GPL-2.0",
"main": "dist/index.js",
"node-red": {
"nodes": {
"connect": "dist/nodes/connect.js",
"discord-get-messages": "dist/nodes/get-messages.js",
"discord-get-emoji-reactions": "dist/nodes/get-emoji-reactions.js",
"discord-send-messages": "dist/nodes/send-messages.js",
"discord-members-monitoring": "dist/nodes/members-monitoring.js"
}
},
"dependencies": {
"discord.js": "^11.6.4",
"flatted": "^2.0.0"
},
"devDependencies": {
"@types/node": "^12.12.14",
"@types/node-red": "^0.20.0",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}