forked from mathieudutour/git-sketch-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.72 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
{
"name": "git-sketch-plugin",
"version": "0.11.3",
"description": "Plugin to handle versioning in git",
"main": "Git.sketchplugin",
"manifest": "src/manifest.json",
"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",
"publish": "skpm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieudutour/git-sketch-plugin.git"
},
"author": "Mathieu Dutour <[email protected]> (http://mathieu.dutour.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieudutour/git-sketch-plugin/issues"
},
"homepage": "https://github.com/mathieudutour/git-sketch-plugin#readme",
"devDependencies": {
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.19.0",
"eslint-config-sketch": "^0.2.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"skpm": "^0.9.7"
},
"dependencies": {
"eslint-config-sketch": "^0.2.2",
"eslint-config-standard-preact": "^1.0.1",
"eslint-plugin-react": "^6.10.3",
"preact": "^7.1.0",
"sketch-module-fs": "^0.1.2",
"sketch-module-google-analytics": "^0.1.3",
"sketch-module-update": "^0.1.2",
"sketch-module-user-preferences": "^1.0.1",
"sketch-module-web-view": "^0.1.4"
}
}