This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "hubble-sketch-plugin",
"description": "Sketch Plugin to couple your Sketch file to the Hubble Design System.",
"version": "1.3.0",
"homepage": "https://hubble-design-system.netlify.com",
"repository": "https://github.com/inthepocket/hubble-sketch-plugin",
"author": "In The Pocket",
"maintainers": [
"Jonathan Dierckens <[email protected]>",
"Thibault Maekelbergh <[email protected]>"
],
"license": "MIT",
"keywords": [
"hubble",
"hubble-sketch-plugin",
"hubble-oss",
"hubble-design-system",
"inthepocket"
],
"engines": {
"sketch": ">=49.0"
},
"skpm": {
"name": "hubble-sketch-plugin",
"manifest": "src/manifest.json",
"main": "hubble-sketch-plugin.sketchplugin",
"assets": [
"assets/**/*"
]
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link",
"lint": "itp-react-scripts lint",
"lint:fix": "npm run lint -- --fix",
"format": "itp-react-scripts format \"src/**/*.js\" --write",
"test": "skpm-test",
"log": "skpm log -f",
"install:plugin": "npm run build && open hubble-sketch-plugin.sketchplugin",
"release:patch": "skpm publish patch",
"release:minor": "skpm publish minor",
"release:major": "skpm publish major"
},
"devDependencies": {
"@inthepocket/itp-react-scripts": "^0.48.1",
"@skpm/builder": "^0.7.4",
"eslint": "^5.14.1",
"skpm": "^1.3.1"
},
"dependencies": {
"@skpm/child_process": "^0.2.4",
"sketch-utils": "^0.2.9"
}
}