This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.91 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "unmock",
"publisher": "Unmock",
"displayName": "unmock-vs",
"description": "Unmock plugin for VSCode",
"license": "MIT",
"icon": "resources/unmock-extension-logo.png",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/unmock/unmock-vscode-plugin"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/*.json",
"onLanguage:javascript",
"onLanguage:typescript"
],
"main": "./dist/index",
"contributes": {
"configuration": [
{
"title": "Unmock",
"type": "object",
"properties": {
"unmock.refreshToken": {
"type": [
"string",
"null"
],
"default": null,
"description": "The refresh token to get when you registered for unmock. Used for various operations with the remote unmock service."
},
"unmock.path": {
"type": "string",
"default": ".unmock",
"description": "Default path to look for stored credentials (relative to the workspace or absolute path)."
},
"unmock.codeLens": {
"type": "boolean",
"default": false,
"description": "Use CodeLens to suggest places to use unmock; we will only present a single CodeLens suggestions to keep your vertical space tidy."
},
"unmock.lightbulb": {
"type": "boolean",
"default": false,
"description": "Use the light bulb to suggest places to use unmock when editing relevant lines."
}
}
}
],
"commands": [],
"viewsContainers": {
"activitybar": [
{
"id": "unmock-activity-button",
"title": "Unmock",
"icon": "./resources/unmock-logo.bmp"
}
]
},
"views": {
"unmock-activity-button": [
{
"id": "unmock.mocksExplorer",
"name": "Mock Explorer"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test",
"test-compile": "tsc -p ./"
},
"dependencies": {
"@types/ini": "^1.3.30",
"@types/lodash": "^4.14.123",
"axios": "^0.18.1",
"ini": "^1.3.5",
"lodash": "^4.17.19",
"ts-loader": "^5.4.3"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/webpack": "^4.4.27",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"resolutions": {
"serialize-javascript": "^2.1.1",
"set-value": "^2.0.1"
}
}