-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "sketch-favicon",
"description": "Sketch plugin for favicon generation.",
"version": "1.0.0",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/woofwoofinc/sketch-favicon",
"repository": {
"type": "git",
"url": "https://github.com/woofwoofinc/sketch-favicon.git"
},
"scripts": {
"build": "literacy src/js --out-dir lib && eslint lib && skpm build",
"publish": "skpm publish"
},
"skpm": {
"manifest": "lib/manifest.json",
"main": "favicon.sketchplugin"
},
"dependencies": {
"arraybuffer-to-buffer": "^0.0.4",
"base64-arraybuffer": "^0.1.5",
"buffer-alloc": "^1.1.0",
"resize-image-data": "^0.1.1",
"upng-js": "^1.0.1"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-strict": "^14.0.0",
"literacy": "^1.1.1",
"skpm": "^0.10.5"
},
"eslintConfig": {
"extends": "strict",
"env": {
"es6": true,
"node": true
},
"globals": {
"MSExportRequest": false,
"NSAlert": false,
"NSButton": false,
"NSData": false,
"NSFileManager": false,
"NSFont": false,
"NSFontManager": false,
"NSItalicFontMask": false,
"NSMakeRect": false,
"NSOKButton": false,
"NSSavePanel": false,
"NSSwitchButton": false,
"NSTemporaryDirectory": false,
"NSTextField": false,
"NSUUID": false,
"NSView": false
},
"rules": {
"arrow-parens": "off",
"eqeqeq": "off",
"id-blacklist": "off",
"id-length": "off",
"id-match": "off",
"indent": "off",
"no-magic-numbers": "off",
"no-multiple-empty-lines": "off",
"padded-blocks": "off",
"prefer-destructuring": "off"
}
},
"keywords": [
"sketch",
"favicon"
]
}