generated from sketch-hq/sketch-assistant-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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": "sketch-accessibility-assistant",
"homepage": "https://github.com/ygev/sketch-accessibility-assistant",
"version": "1.4.1",
"main": "dist/index.js",
"sketch": "dist/sketch.js",
"license": "MIT",
"sketch-assistant": {
"title": "Accessibility",
"description": "Ensure your document is accessible and compliant with WCAG 2.1",
"icon": "https://i.imgur.com/ijYtOhk.png"
},
"author": {
"name": "Yana Gevorgyan"
},
"keywords": [
"accessibility",
"contrast",
"color-contrast",
"color-contrast-checker",
"accessibility-checker",
"a11y",
"sketch assistant",
"public"
],
"files": [
"dist"
],
"scripts": {
"test": "jest --no-cache",
"build": "rm -rf dist && npm run build:node && npm run build:sketch",
"build:node": "tsc",
"build:sketch": "webpack",
"package-tarball": "npm run build && npm pack"
},
"devDependencies": {
"@sketch-hq/sketch-assistant-utils": "6.0.0",
"@types/jest": "26.0.4",
"@types/node": "14.0.22",
"jest": "26.1.0",
"node-fetch": "2.6.1",
"prettier": "2.0.5",
"ts-jest": "26.1.2",
"typescript": "3.9.6",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
},
"dependencies": {
"@sketch-hq/sketch-assistant-types": "6.0.0"
}
}