-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.66 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
{
"publisher": "satosystems",
"repository": {
"type": "git",
"url": "https://github.com/satosystems/searchrep.git"
},
"name": "searchrep",
"icon": "images/icon.png",
"displayName": "SearchRep",
"description": "Search and replace via search result editor",
"version": "1.2.0",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:searchrep.replace"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "searchrep.replace",
"title": "SearchRep: Replace using changed search results"
}
],
"keybindings": [
{
"command": "searchrep.replace",
"key": "ctrl+shift+r",
"mac": "cmd+shift+r"
}
]
},
"scripts": {
"format": "standard --fix",
"lint": "eslint *.js test",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"vscode:prepublish": "webpack --mode production",
"package": "vsce package",
"publish": "vsce publish -p $TOKEN"
},
"standard": {
"globals": [
"suite",
"test"
],
"ignore": [
"node_modules/**"
]
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.49.0",
"eslint": "^7.9.0",
"eslint-loader": "^4.0.2",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"standard": "^14.3.4",
"typescript": "^4.0.2",
"vsce": "^1.81.1",
"vscode-test": "^1.4.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}