-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 944 Bytes
/
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
{
"name": "joke-grammer",
"displayName": "Joke-grammer",
"publisher": "Parth",
"repository": "https://github.com/parthpanchal123/joke-grammer",
"description": "Get fun jokes right into vs code !",
"version": "0.0.3",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:joke-grammer.helloWorld"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "joke-grammer.helloWorld",
"title": "Get a Joke 🤣"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.11.7",
"@types/vscode": "^1.50.0",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"dependencies": {
"axios": "^0.21.1"
}
}