This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "sketch-logo-fetcher",
"description": "Sketch.app plugin to search and insert SVG and PNG logos from different sources",
"version": "0.5.9",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "sketch-logo-fetcher",
"manifest": "src/manifest.json",
"main": "sketch-logo-fetcher.sketchplugin"
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link",
"lint-staged": "lint-staged",
"prettier:base": "prettier --single-quote --trailing-comma es5 --no-semi --write",
"prettify": "npm run prettier:base \"./src/**/*.js\""
},
"devDependencies": {
"@skpm/builder": "^0.5.16",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-no-not-accumulator-reassign": "^0.1.0",
"eslint-plugin-prettier": "^2.7.0",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": [
"npm run prettier:base",
"eslint --quiet --rule 'prettier/prettier: [\"error\", {\"trailingComma\": \"es5\", \"singleQuote\": true}]'",
"git add"
]
},
"repository": "https://github.com/soulchild/sketch-logo-fetcher",
"author": "Tobi Kremer <[email protected]>",
"license": "MIT"
}