-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.61 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
{
"author": {
"name": "Rencore",
"email": "[email protected]",
"url": "https://rencore.com"
},
"name": "vscode-spfx-script-check",
"displayName": "Rencore SPFx Script Check",
"description": "Check the performance of external scripts and get snippet to include them in SharePoint Framework project. Created by Rencore.",
"version": "1.1.0",
"publisher": "RencoreGmbH",
"icon": "assets/spfx-scriptcheck.png",
"engines": {
"vscode": "^1.19.0"
},
"contributors": [
"Mastykarz, Waldek <[email protected]>",
"Struyf, Elio <[email protected]>"
],
"categories": [
"Other"
],
"keywords": [
"SharePoint",
"SPFx",
"TypeScript",
"React",
"Framework"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rencoreab/vscode-spfx-script-checker"
},
"activationEvents": [
"onCommand:spfx.scriptcheck"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "spfx.scriptcheck",
"title": "Rencore SPFx Script Check"
}
]
},
"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"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"@types/request": "^2.0.12",
"@types/request-promise": "^4.1.39",
"typescript": "^2.5.3",
"vscode": "^1.1.5"
},
"dependencies": {
"request": "2.83.0",
"request-promise": "4.2.2"
}
}