-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
{
"name": "vscode-iot-device-cube",
"displayName": "IoT Device Cube",
"description": "Utility extension to access to physical devices",
"version": "0.3.0",
"extensionKind": "ui",
"publisher": "vsciot-vscode",
"repository": {
"type": "git",
"url": "https://github.com/VSChina/vscode-iot-device-cube.git"
},
"bugs": {
"url": "https://github.com/VSChina/vscode-iot-device-cube/issues"
},
"preview": true,
"homepage": "https://github.com/VSChina/vscode-iot-device-cube/blob/master/README.md",
"icon": "logo.png",
"aiKey": "[AIKEY PLACEHOLDER]",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension.js",
"api": "none",
"scripts": {
"vscode:prepublish": "npm run compile && webpack --mode production",
"compile": "tsc -p .",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/node-usb-native/scripts/rebuild-serialport.js",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"check": "node ./node_modules/eslint/bin/eslint.js . --ext .ts",
"fix": "node ./node_modules/eslint/bin/eslint.js . --ext .ts --fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/fs-plus": "^3.0.1",
"@types/mocha": "^2.2.42",
"@types/node": "^10.14.20",
"@types/serialport": "^7.0.4",
"@types/ssh2": "^0.5.39",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"fs-plus": "^3.1.1",
"gts": "^2.0.2",
"gulp": "^4.0.2",
"node-gyp": "^6.1.0",
"tslint": "^5.20.0",
"typescript": "~3.4.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"adm-zip": "^0.4.13",
"clipboardy": "^2.3.0",
"eventemitter2": "^5.0.1",
"impor": "^0.1.1",
"molehole": "^0.1.3",
"node-usb-native": "^0.0.13",
"ssh2": "^0.8.5",
"util": "^0.12.1",
"volumelist": "^0.1.8"
},
"extensionDependencies": [
"ms-vscode-remote.vscode-remote-extensionpack"
]
}