forked from novemberfiveco/symbol-spacer-sketch-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.03 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
{
"name": "symbol-spacer-sketch-plugin",
"version": "0.1.3",
"description": "Automatically resize spacing symbols to correct size when changing to different one",
"main": "novemberfive-symbol-spacer.sketchplugin",
"manifest": "src/manifest.json",
"private": true,
"resources": [
"Resources/Preferences.js",
"Resources/Portal.js"
],
"scripts": {
"test": "eslint -c ./.eslintrc src/ && eslint -c ./.eslintrc Resources/",
"postinstall": "npm run build && skpm link ./",
"build": "skpm build",
"publish": "skpm publish",
"todos": "node scripts/todo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/novemberfiveco/symbol-spacer-sketch-plugin.git"
},
"keywords": [
"sketch",
"sketch-plugin",
"sort",
"design"
],
"author": "Geert Wille <geert@novemberfive.co> (http://novemberfive.co/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/novemberfiveco/symbol-spacer-sketch-plugin/issues"
},
"homepage": "https://github.com/novemberfiveco/symbol-spacer-sketch-plugin#readme",
"engines": {
"sketch": ">=3.0"
},
"devDependencies": {
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^1.1.3",
"eslint": "^3.19.0",
"eslint-config-sketch": "^0.2.2",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^1.0.0",
"skpm": "^0.9.11"
},
"dependencies": {
"eslint-config-standard-preact": "^1.0.1",
"eslint-plugin-react": ">=7.0.1",
"preact": "^7.1.0",
"sketch-constants": "^1.0.2",
"sketch-module-fs": "^0.1.2",
"sketch-module-google-analytics": "^0.1.3",
"sketch-module-update": "git://github.com/novemberfiveco/sketch-module-update.git#master",
"sketch-module-user-preferences": "^1.0.1",
"sketch-module-web-view": "^0.1.4"
}
}