-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
97 lines (97 loc) Β· 2.36 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
{
"name": "coderoad",
"version": "0.12.0",
"description": "Play interactive coding tutorials in your editor",
"keywords": [
"tutorial",
"learn",
"education",
"teach",
"training"
],
"homepage": "https://github.com/coderoad/coderoad-vscode",
"bugs": {
"url": "https://github.com/coderoad/coderoad-vscode/issues",
"email": "coderoadapp@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/coderoad/coderoad-vscode.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "Shawn McKay <shawn.j.mckay@gmail.com>"
},
"main": "./build/extension.js",
"scripts": {
"build": "./scripts/build.sh",
"postinstall": "node ./node_modules/vscode/bin/install",
"install-all": "yarn && yarn --cwd web-app",
"lint": "eslint web-app/src/**/*.ts src/**/*.ts",
"package": "./scripts/package.sh",
"storybook": "yarn --cwd web-app storybook",
"test": "jest",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@types/assert": "^1.5.1",
"@types/jest": "^26.0.5",
"@types/jsdom": "^16.2.3",
"@types/node": "^14.0.24",
"@types/node-fetch": "^2.5.7",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"chokidar": "^3.4.1",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"git-url-parse": "^11.1.2",
"jest": "^26.1.0",
"jsdom": "^16.3.0",
"node-fetch": "^2.6.0",
"semver": "^7.3.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7",
"vscode-extension-telemetry": "^0.1.6"
},
"devDependencies": {
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "2.0.5",
"vscode": "^1.1.37",
"vscode-test": "^1.4.0"
},
"engines": {
"vscode": "^1.39.2"
},
"activationEvents": [
"onCommand:coderoad.start"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "coderoad.start",
"title": "Start",
"category": "CodeRoad"
}
],
"keybindings": [
{
"key": "ctrl+enter",
"mac": "ctrl+enter",
"command": "coderoad.enter"
}
]
},
"displayName": "CodeRoad",
"galleryBanner": {
"color": "#6a67ce",
"theme": "dark"
},
"preview": true,
"publisher": "CodeRoad"
}