-
-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
67 lines (67 loc) · 1.92 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
65
66
67
{
"name": "git-sketch-plugin",
"version": "0.12.1",
"description": "Plugin to handle versioning in git",
"main": "Git.sketchplugin",
"skpm": {
"name": "Git",
"manifest": "src/manifest.json",
"identifier": "me.dutour.mathieu.git-plugin",
"assets": [
"assets/**/*"
],
"resources": [
"Resources/branches.js",
"Resources/preferences.js"
]
},
"directories": {
"doc": "docs",
"example": "example"
},
"scripts": {
"test": "eslint -c ./.eslintrc src/ && eslint -c ./.eslintrc Resources/",
"postinstall": "npm run build && skpm-link",
"build": "skpm-build",
"watch": "skpm-build --watch",
"publish": "skpm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieudutour/git-sketch-plugin.git"
},
"author": "Mathieu Dutour <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieudutour/git-sketch-plugin/issues"
},
"homepage": "https://github.com/mathieudutour/git-sketch-plugin#readme",
"devDependencies": {
"@skpm/builder": "^0.7.5",
"@skpm/extract-loader": "^2.0.2",
"babel-plugin-transform-react-jsx": "^6.8.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-sketch": "^0.2.4",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-preact": "^1.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"html-loader": "^0.5.5",
"prettier": "^2.0.2"
},
"dependencies": {
"@skpm/child_process": "^0.4.2",
"@skpm/dialog": "^0.4.0",
"@skpm/fs": "^0.2.6",
"linkstate": "^1.1.1",
"preact": "^10.3.4",
"sketch-module-user-preferences": "^1.0.1",
"sketch-module-web-view": "^3.4.1"
}
}