forked from skpm/sketch-module-web-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
57
58
59
60
61
62
63
64
{
"name": "sketch-module-web-view",
"version": "3.1.4",
"description": "A sketch module for creating an complex UI with a webview",
"main": "lib/index.js",
"dependencies": {
"mocha-js-delegate": "^0.2.0"
},
"devDependencies": {
"@skpm/test-runner": "^0.4.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"lint-staged": "^8.1.5",
"pre-commit": "^1.2.2",
"prettier": "^1.17.0"
},
"scripts": {
"test": "npm run lint && skpm-test",
"test:watch": "skpm-test --watch",
"lint": "find . -name \"*.js\" | grep -v -f .gitignore | xargs eslint",
"prettier:base": "prettier --write",
"prettify": "find . -name \"*.js\" | grep -v -f .gitignore | xargs npm run prettier:base",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieudutour/sketch-module-web-view.git"
},
"keywords": [
"sketch",
"module",
"webview",
"ui"
],
"author": "Mathieu Dutour <[email protected]> (http://mathieu.dutour.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieudutour/sketch-module-web-view/issues"
},
"homepage": "https://github.com/mathieudutour/sketch-module-web-view#readme",
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{js,ts}": [
"npm run prettier:base",
"eslint",
"git add"
],
"*.{md}": [
"npm run prettier:base",
"git add"
]
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
}
}