-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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": "ovalizer",
"version": "0.0.3",
"description": "Sketch plugin for Oval awesomness",
"license": "Apache-2.0",
"repository": "OvalMoney/ovalizer-sketch",
"bugs": {
"url": "https://github.com/OvalMoney/ovalizer-sketch/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/OvalMoney/ovalizer-sketch",
"author": {
"name": "Oval Money",
"email": "[email protected]"
},
"engines": {
"node": ">=8",
"sketch": ">=3.0"
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"release": "git pull && standard-version",
"postinstall": "yarn build && skpm-link",
"test": "xo"
},
"dependencies": {},
"devDependencies": {
"@skpm/builder": "0.5.13",
"ava": "1.0.1",
"nyc": "13.1.0",
"standard-version": "4.4.0",
"xo": "0.23.0"
},
"xo": {
"rules": {
"max-len": [
"error",
{
"code": 130,
"ignoreUrls": true
}
],
"capitalized-comments": "off"
}
},
"skpm": {
"name": "Ovalizer Sketch",
"manifest": "src/manifest.json",
"main": "ovalizer.sketchplugin",
"assets": [
"assets/**/*"
]
}
}