-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 951 Bytes
/
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
{
"name": "sketch-wcag",
"version": "1.1.0",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "Sketch WCAG",
"description": "A Sketch plugin that lets you contrast test your entire color palette against the WCAG 2.0 guidelines all at once.",
"manifest": "src/manifest.json",
"main": "sketch-wcag.sketchplugin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryanberger/sketch-wcag.git"
},
"scripts": {
"build": "skpm-build",
"build-production": "NODE_ENV=production npm run build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link && mkdir -p sketch-wcag.sketchplugin/Contents/Resources && cp src/styles.css src/icon.png sketch-wcag.sketchplugin/Contents/Resources"
},
"pre-commit": [],
"devDependencies": {
"@skpm/builder": "^0.5.10"
},
"dependencies": {
"colorable": "^1.0.5"
}
}