-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "insomnia-plugin-relative-date",
"version": "1.0.0",
"description": "An Insomnia plugin to insert relative dates in ISO-8601 format",
"main": "main.js",
"author": "Gabriel Verissimo Dias",
"license": "MIT",
"insomnia": {
"name": "relative-date",
"displayName": "Relative Date",
"description": "This plugin allows you to insert relative dates in ISO-8601 format.",
"images": {
"icon": "./assets/icon.png"
},
"publisher": {
"name": "Gabriel Verissimo Dias",
"icon": "https://media.licdn.com/dms/image/v2/D4D03AQHbxdRUQciCoA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1693500142558?e=1749081600&v=beta&t=aTu-V6D-tT_AILhKkDOvY3dPSYPfQ7ksWR4i_0_gmDU"
},
"dependencies": {
"chrono-node": "^2.3.2",
"date-fns": "^3.3.0"
},
"keywords": [
"insomnia-plugin",
"insomnia",
"relative-date",
"date",
"time",
"iso-8601",
"datetime",
"datetime-format"
],
"unlisted": false
},
"dependencies": {
"chrono-node": "^2.7.9",
"date-fns": "^4.1.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"scripts": {
"test": "jest"
}
}