-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 3.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "xlayers-extension",
"displayName": "xLayers",
"description": "A VSCode plugin that lets you convert SketchApp Design Files Into ANY Framework And Library",
"publisher": "xLayers",
"author": {
"name": "Jeffrey Bosch",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/xlayers/xlayers-vscode-extenstion/blob/master/README.md",
"bugs": {
"url": "https://github.com/xlayers/xlayers-vscode-extenstion/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xlayers/xlayers-vscode-extenstion.git"
},
"version": "1.0.0",
"engines": {
"vscode": "^1.39.0"
},
"preview": false,
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"icon": "images/xLayers-logo.png",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "xlayers",
"title": "xLayers",
"icon": "images/xLayers-logo.png"
}
]
},
"views": {
"xlayers": [
{
"id": "sketchProvider",
"name": ""
}
]
},
"commands": [
{
"command": "xlayers.open",
"title": "Open"
},
{
"command": "xlayers.selectFile",
"title": "🎨 xLayers 🎨"
}
],
"menus": {
"explorer/context": [
{
"group": "navigation@-1",
"command": "xlayers.selectFile",
"when": "resourceExtname == .sketch"
}
],
"view/item/context": [
{
"command": "xlayers.open",
"when": "view == sketchProvider && viewItem == sketch"
}
]
}
},
"scripts": {
"webpack": "webpack --mode production",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p test.tsconfig.json",
"run-test": "node ./dist/test/runTests.js",
"test": "npm run test-compile && npm run run-test",
"--release--": "",
"package": "npx vsce package",
"publish": "npx vsce publish",
"vscode:prepublish": "webpack --mode production",
"release": "release-it --config .release-it.json",
"--misc--": "",
"lint": "tslint -p ./",
"changelog": "conventional-changelog -p angular -u | tail -n +3",
"changelog.write": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog.full": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/sinon": "^7.5.0",
"@types/vscode": "1.39.0",
"conventional-changelog-cli": "^2.0.23",
"copy-webpack-plugin": "^5.0.4",
"filemanager-webpack-plugin": "^2.0.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"mocha": "^6.2.1",
"sinon": "^7.4.1",
"ts-loader": "^6.0.4",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode-test": "^1.2.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"jszip": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint --fix",
"pre-push": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}