-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.78 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
{
"name": "vscode-wsl-workspacefolder",
"displayName": "WSL workspaceFolder",
"description": "Returns `workspaceFolder` as a WSL path.\n\nUseful where WSL format workspaceFolder path is required, e.g. for debug 'remoteRoot' property in launch config, etc.",
"version": "1.1.2",
"publisher": "lfurzewaddock",
"icon": "public/assets/images/vscode-wsl-workspacefolder.png",
"galleryBanner": {
"color": "#007ACC",
"theme": "dark"
},
"keywords": [
"WSL",
"workspaceFolder",
"path",
"WSL path format",
"Windows path format",
"multi-root ready"
],
"bugs": {
"url": "https://github.com/lfurzewaddock/vscode-wsl-workspacefolder/issues"
},
"homepage": "https://github.com/lfurzewaddock/vscode-wsl-workspacefolder/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/lfurzewaddock/vscode-wsl-workspacefolder"
},
"engines": {
"vscode": "^1.18.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.vscode-wsl-workspaceFolder"
],
"main": "./lib",
"contributes": {
"commands": [
{
"command": "extension.vscode-wsl-workspaceFolder",
"title": "WSL workspaceFolder"
}
]
},
"scripts": {
"vscode:prepublish": "npm run publish",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "./node_modules/.bin/tape --require esm test/{,**/}/*.test.js | tap-spec",
"debug": "DEBUG=vscode-wsl-workspacefolder:* node --nolazy --inspect-brk=5858 ./node_modules/.bin/tape --require esm test/{,**/}/*.test.js",
"testem": "testem -f testem.node.json",
"publish": "./node_modules/.bin/babel src --out-dir lib",
"babel": "./node_modules/.bin/babel src --out-dir lib --source-maps",
"lint": "node_modules/.bin/prettier-eslint \"*/**/*.js\" --log-level info",
"lintFix": "node_modules/.bin/prettier-eslint \"*/**/*.js\" --write --log-level warn",
"coverage": "node_modules/nyc/bin/nyc.js --require esm --reporter=html tape test/{,**/}/*.test.js | tap-spec && ./bin/opn-cli coverage/index.html -- chrome"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"esm": "^3.0.65",
"minimist": "^1.2.0",
"nyc": "^12.0.2",
"opn": "^5.3.0",
"prettier-eslint-cli": "^4.7.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"tape-promise": "^3.0.0",
"testem": "^2.8.2"
},
"dependencies": {
"debug": "^3.1.0",
"execa": "^0.10.0",
"is-wsl": "^1.1.0",
"vscode": "^1.1.35"
}
}