-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 KB
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
{
"name": "codewall",
"displayName": "CodeWall",
"description": "VS Code extension that checks if code goes past your rulers",
"version": "1.2.2",
"publisher": "abhinavk99",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/abhinavk99/codewall.git"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"title": "CodeWall",
"properties": {
"codewall.openProblemsPane": {
"type": "boolean",
"default": true,
"description": "Open problems pane to show warnings for lines that cross a ruler"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"binary-search": "^1.3.6",
"eslint": "^7.17.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"source-map-support": "^0.5.19",
"typescript": "^4.1.3",
"vscode-test": "^1.4.1"
}
}