-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "xd-dialog-helper",
"version": "1.1.0",
"description": "An abstraction layer making it easier to display simple dialogs in plugins for Adobe XD CC",
"main": "dialog-helper.js",
"types": "dialog-helper.d.ts",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"prepare": "npm run build",
"pretest": "npm run build",
"update-snapshots": "npm test -- -u",
"test": "jest --coverage",
"lint": "eslint src/"
},
"repository": "github:pklaschka/xd-dialog-helper",
"keywords": [
"Adobe",
"XD",
"dialog",
"plugins",
"modal",
"abstraction"
],
"author": {
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka",
"email": "[email protected]"
},
"contributors": [
{
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pklaschka/xd-dialog-helper/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/pklaschka/xd-dialog-helper#readme",
"devDependencies": {
"eslint": "^8.3.0",
"jest": "^29.3.1",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"jest": {
"testEnvironment": "jsdom"
}
}