-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "xd-storage-helper",
"version": "1.2.3",
"description": "A little helper to make storing key-value-pairs (e.g. settings) for plugins for Adobe XD CC easier.",
"main": "storage-helper.js",
"types": "storage-helper.d.ts",
"scripts": {
"test": "jest --coverage"
},
"repository": "github:pklaschka/xd-storage-helper",
"keywords": [
"Adobe",
"XD",
"storage",
"plugins",
"key-value",
"settings",
"preferences",
"abstraction"
],
"author": {
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka",
"email": "xdplugins@pabloklaschka.de"
},
"contributors": [
{
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka",
"email": "xdplugins@pabloklaschka.de"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pklaschka/xd-storage-helper/issues",
"email": "xdplugins@pabloklaschka.de"
},
"homepage": "https://github.com/pklaschka/xd-storage-helper#readme",
"devDependencies": {
"jest": "^29.2.2"
}
}