-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.55 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": "json-color-palette-importer",
"homepage": "https://github.com/ziyafenn/sketch-json-color-palette-importer",
"description": "Create color variables by importing JSON color palettes",
"repository": {
"type": "git",
"url": "https://github.com/ziyafenn/sketch-json-color-palette-importer"
},
"version": "1.2.1",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "json-color-palette-importer",
"manifest": "src/manifest.json",
"main": "json-color-palette-importer.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.4.2",
"eslint": "^4.8.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": "Ziya Fenn <[email protected]>",
"dependencies": {}
}