-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
128 lines (128 loc) · 3.33 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "postcode",
"publisher": "rohinivsenthil",
"displayName": "Postcode",
"icon": "icons/icon.png",
"description": "An API client to test and create HTTP/s requests",
"version": "1.3.9",
"license": "MIT",
"bugs": {
"url": "https://github.com/rohinivsenthil/postcode/issues"
},
"author": {
"name": "Rohini Senthil",
"email": "rohinivsenthil@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/rohinivsenthil/postcode"
},
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"api-client",
"postman",
"REST",
"graphql",
"http"
],
"activationEvents": [
"onCommand:postcode.createRequest"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "postcode.createRequest",
"title": "Postcode: Create Request"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "postcode",
"title": "Postcode",
"icon": "webview/icons/package.svg"
}
]
},
"views": {
"postcode": [
{
"id": "postcode.request",
"name": "Request"
}
]
},
"viewsWelcome": [
{
"view": "postcode.request",
"contents": "[Create Request](command:postcode.createRequest)"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "cross-env NODE_ENV=development webpack --progress",
"watch": "cross-env NODE_ENV=development webpack --progress --watch",
"package": "cross-env NODE_ENV=production webpack --progress",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "yarn run test-compile && yarn run lint",
"lint": "eslint src webview --ext .ts,.tsx",
"lint:fix": "eslint --fix src webview --ext .ts,.tsx",
"test": "node ./out/test/runTest.js",
"prepare": "husky install"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.4",
"@types/react-redux": "^7.1.16",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"husky": "^7.0.1",
"mini-css-extract-plugin": "^1.6.0",
"mocha": "^8.2.1",
"monaco-editor-webpack-plugin": "^3.1.0",
"prettier": "2.3.0",
"static-site-generator-webpack-plugin": "^3.4.2",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"vscode-test": "^1.5.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"axios": "^0.21.1",
"buffer": "^6.0.3",
"monaco-editor": "^0.24.0",
"path-browserify": "^1.0.1",
"postman-code-generators": "^1.1.5",
"postman-collection": "^3.6.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-redux": "^7.2.4",
"url": "^0.11.0"
}
}