-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "vscode-njsproj",
"displayName": "VS Code .njsproj",
"description": "Automatically sync .njsproj file",
"publisher": "berkansivri",
"icon": "icon.png",
"license": "MIT",
"repository": {
"type": ".git",
"url": "https://github.com/berkansivri/vscode-njsproj.git"
},
"homepage": "https://github.com/berkansivri/vscode-njsproj",
"bugs": {
"url": "https://github.com/berkansivri/vscode-njsproj/issues"
},
"keywords": [
".njsproj",
"njsproj"
],
"version": "0.7.2",
"engines": {
"vscode": "^1.45.1"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "extension.njsproj.activate",
"category": "Sync njsproj",
"title": "Enable VS Code .njsproj"
},
{
"command": "extension.njsproj.deactivate",
"category": "Sync njsproj",
"title": "Disable VS Code .njsproj"
}
]
},
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"lint": "eslint . --fix"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"prettier": "^2.2.1",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"xml2js": "^0.4.23"
}
}