-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "paste-to-fill",
"description": "Paste your image from clipboard, to fill layer.",
"version": "0.2.0",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "paste-to-fill",
"manifest": "src/manifest.json",
"main": "paste-to-fill.sketchplugin"
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link",
"lint": "eslint --quiet --rule 'prettier/prettier: [\"error\", {\"trailingComma\": \"es5\", \"singleQuote\": true}]' src/*.js",
"lint-staged": "lint-staged",
"prettier:base": "prettier --single-quote --trailing-comma es5 --write",
"prettify": "npm run prettier:base \"./src/**/*.js\""
},
"devDependencies": {
"@skpm/builder": "^0.7.7",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-no-not-accumulator-reassign": "^0.1.0",
"eslint-plugin-prettier": "^2.3.1",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"prettier": "^1.7.4"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.js": [
"npm run prettier:base",
"eslint --quiet --rule 'prettier/prettier: [\"error\", {\"trailingComma\": \"es5\", \"singleQuote\": true}]'",
"git add"
]
},
"author": "tgfjt <tgfjt.mail@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/tgfjt/sketch-paste-to-fill.git"
},
"bugs": {
"url": "https://github.com/tgfjt/sketch-paste-to-fill/issues"
},
"homepage": "https://github.com/tgfjt/sketch-paste-to-fill#readme"
}