-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.2 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
{
"name": "node-modules-resolve",
"displayName": "Node modules resolve",
"description": "Provides definitions for commonjs requires in your code for quick navigation.",
"version": "1.0.2",
"publisher": "naumovs",
"engines": {
"vscode": "^0.11.x"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"scripts": {
"vscode:prepublish": "node ./node_modules/webpack/bin/webpack.js",
"compile": "node ./node_modules/webpack/bin/webpack.js -w"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sergiirocks/vscode-ext-node-module-resolve/issues"
},
"homepage": "https://github.com/sergiirocks/vscode-ext-node-module-resolve",
"repository": {
"type": "git",
"url": "https://github.com/sergiirocks/vscode-ext-node-module-resolve.git"
},
"main": "./dist/extension",
"icon": "images/preview.png",
"contributes": {
"configuration": {
"type": "object",
"title": "Node modules resolve",
"properties": {
"javascript.commonjs.resolve.languages": {
"type": "array",
"default": [ "javascript", "javascriptreact", "typescript", "typescriptreact" ],
"description": "Array of languages where the script should be enabled."
},
"javascript.commonjs.resolve.extensions": {
"type": "array",
"default": [ ".js" ],
"description": "Array of file extensions to search in order."
},
"javascript.commonjs.resolve.package": {
"type": "string",
"default": "package.json",
"description": "package.json Data applicable to the module being loaded"
},
"javascript.commonjs.resolve.moduleDirectory": {
"type": "array",
"default": [ "node_modules" ],
"description": "Directories in which to recursively look for modules."
}
}
}
},
"devDependencies": {
"json-loader": "0.5.4",
"resolve": "1.1.7",
"vscode": "0.11.18",
"webpack": "1.13.2"
}
}