-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.5 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
{
"name": "sketch-symbol-legend",
"version": "2.0.0",
"engines": {
"sketch": ">=3.0",
"node": ">=8"
},
"skpm": {
"name": "Legend",
"manifest": "manifest.json",
"main": "Legend.sketchplugin/Contents/Sketch"
},
"scripts": {
"lint": "eslint Legend.sketchplugin",
"prettier:base": "prettier --write",
"prettify": "npm run prettier:base \"./src/**/*.js\"",
"sketch:log": "skpm log -f",
"sketch:watch": "defaults write ~/Library/Preferences/com.bohemiancoding.sketch3.plist AlwaysReloadScript -bool YES",
"sketch:link": "ln -sf \"$PWD/Legend.sketchplugin\" \"$HOME/Library/Application Support/com.bohemiancoding.sketch3/Plugins\"",
"sketch:prerelease": "rm -f package-lock.json",
"sketch:release": "npm run sketch:prerelease && skpm publish $SKETCH_RELEASE --skip-registry",
"sketch:post-publish": "node ./scripts/post-publish.js",
"postinstall": "npm run sketch:watch && npm run sketch:link",
"build": "npm run sketch:post-publish"
},
"devDependencies": {
"@skpm/builder": "^0.5.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.6.0",
"eslint-config-sketch": "^0.2.2",
"eslint-config-wix": "^1.1.18",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.3.1",
"prettier": "^1.7.4",
"skpm": "^1.0.15"
},
"author": "Wix.com",
"url": "https://github.com/wix-incubator/sketch-symbol-legend/issues",
"repository": {
"type": "git",
"url": "https://github.com/wix-incubator/sketch-symbol-legend"
}
}