-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
83 lines (83 loc) · 2.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "node-red-contrib-moment",
"version": "5.0.0",
"description": "Node-Red Node that produces formatted Date/Time output using the Moment.JS library. Timezone, dst and locale aware.",
"scripts": {
"push": "git push origin",
"pull": "git pull origin",
"presync": "npm run pull",
"sync": "npm run push",
"listbin": "ls ./node_modules/bin",
"npmtags": "npm dist-tag ls node-red-contrib-uibuilder",
"npmtagnext": "npm dist-tag add node-red-contrib-uibuilder@$npm_package_version next",
"gittags": "git tag",
"gittag": "git tag -a v%npm_package_version%",
"gitpushtags": "git push origin --tags"
},
"dependencies": {
"moment": "^2.29.0",
"moment-parseformat": "^4.0.0",
"moment-timezone": "^0.5.31",
"os-locale-s": "^1.0.8"
},
"devDependencies": {
"@types/node-red": "^1.1.0"
},
"author": {
"name": "Julian Knight",
"url": "https://github.com/totallyinformation"
},
"contributors": [
{
"name": "Jacques W (Jacques44)",
"url": "https://github.com/Jacques44"
},
{
"name": "Jes Ramsing (Laro88)",
"url": "https://github.com/Laro88"
},
{
"name": "StephanStS",
"url": "https://github.com/StephanStS"
}
],
"keywords": [
"node-red",
"moment",
"momentjs",
"time",
"date",
"timezone",
"locale",
"DST"
],
"node-red": {
"version": ">=3",
"nodes": {
"moment": "moment/nrmoment.js",
"humanizer": "moment/nrhumanizer.js"
},
"notyetnodes": {}
},
"engines": {
"node": ">=14.14"
},
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie < 11"
],
"main": "moment/nrmoment.js",
"repository": {
"type": "git",
"url": "https://github.com/totallyinformation/node-red-contrib-moment"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/totallyinformation/node-red-contrib-moment/issues"
},
"homepage": "https://github.com/totallyinformation/node-red-contrib-moment",
"directories": {}
}