-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 949 Bytes
/
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
{
"name": "apk-locator",
"displayName": "Apk Locator",
"description": "A VS Code extension that effortlessly find and open the enclosing folder of your generated apk files",
"version": "1.0.1",
"publisher": "itscap",
"icon":"images/icon.png",
"repository": "https://github.com/itscap/Apk-Locator.git",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.locate_apk"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.locate_apk",
"title": "Locate APK"
}
]
},
"scripts": {
"build": "babel src -d lib",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.12",
"eslint": "^6.5.1",
"typescript": "^3.6.4",
"vscode": "^1.1.36"
}
}