-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.82 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
{
"name": "code-share",
"displayName": "Code Share",
"description": "An extension to share your project or especific file from vscode with the world",
"version": "0.0.6",
"publisher": "code-share",
"tags": [
"share",
"code",
"collaboration",
"sandbox",
"remote",
"co-debug"
],
"icon": "images/logo-vs.png",
"repository": {
"type": "git",
"url": "https://github.com/dielduarte/code-share"
},
"engines": {
"vscode": "^1.27.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:codeshare.shareProject",
"onCommand:codeshare.shareFile"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "codeshare.shareProject",
"title": "Share Project - CodeSandBox"
},
{
"command": "codeshare.shareFile",
"title": "Share Current File - CodeSandBox"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"prettier": "prettier --write ./src/**/*.ts",
"lint": "tslint -c tslint.json './src/**/*.ts' --fix",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"husky": "^1.1.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1",
"vscode": "^1.1.21"
},
"dependencies": {
"axios": "^0.21.1",
"codesandbox": "^2.1.12",
"codesandbox-import-utils": "^1.3.0",
"fast-memoize": "^2.5.1",
"fs": "0.0.1-security",
"path": "^0.12.7",
"snyk": "^1.436.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"snyk": true
}