-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
51 lines (51 loc) · 1.28 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": "artboard-manager",
"description": "Because moving artboards manually is *so* 2016.",
"version": "2.2.0",
"main": "index.js",
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bomberstudios/artboard-manager.git"
},
"keywords": [
"sketchplugin"
],
"author": "Ale Muñoz",
"license": "MIT",
"bugs": {
"url": "https://github.com/bomberstudios/artboard-manager/issues"
},
"homepage": "https://github.com/bomberstudios/artboard-manager#readme",
"engines": {
"sketch": ">=3.0"
},
"devDependencies": {
"@skpm/builder": "^0.7.4",
"@skpm/extract-loader": "^2.0.2",
"css-loader": "^3.3.0",
"html-loader": "^0.5.5",
"serialize-javascript": ">=3.1.0"
},
"skpm": {
"name": "Artboard Manager",
"identifier": "com.bomberstudios.sketchplugins.artboard-manager",
"authorEmail": "[email protected]",
"manifest": "src/manifest.json",
"main": "artboard-manager.sketchplugin",
"assets": [
"assets/**/*"
]
},
"dependencies": {
"sketch-module-web-view": "^3.4.1"
},
"resources": [
"resources/**/*.js"
]
}