|
1 | 1 | { |
2 | | - "name": "coderoad", |
3 | | - "version": "0.0.1", |
4 | | - "description": "Interactive tutorials in your editor", |
5 | | - "homepage": "https://github.com/shmck/coderoad-vscode/README.md", |
6 | | - "bugs": { |
7 | | - "url": "https://github.com/shmck/coderoad-vscode/issues", |
8 | | - "email": "shawn.j.mckay@gmail.com" |
9 | | - }, |
10 | | - "repository": { |
11 | | - "type": "git", |
12 | | - "url": "https://github.com/shmck/coderoad-vscode.git" |
13 | | - }, |
14 | | - "license": "SEE LICENSE IN LICENSE.md", |
15 | | - "author": { |
16 | | - "name": "Shawn McKay <shawn.j.mckay@gmail.com>" |
17 | | - }, |
18 | | - "main": "./build/extension.js", |
19 | | - "scripts": { |
20 | | - "build": "rm -rf build && concurrently \"npm run build:ext\" \"npm run build:web\"", |
21 | | - "build:ext": "npm run compile", |
22 | | - "build:web": "cd web-app && npm run build", |
23 | | - "compile": "tsc -p ./", |
24 | | - "postinstall": "node ./node_modules/vscode/bin/install", |
25 | | - "machine": "node ./out/state/index.js", |
26 | | - "storybook": "cd web-app && npm run storybook", |
27 | | - "test": "jest", |
28 | | - "test:ext": "node ./build/test/runTest.js", |
29 | | - "vscode:prepublish": "npm run build", |
30 | | - "watch": "tsc -watch -p ./" |
31 | | - }, |
32 | | - "dependencies": { |
33 | | - "jsdom": "^15.2.1" |
34 | | - }, |
35 | | - "devDependencies": { |
36 | | - "@types/assert": "^1.4.3", |
37 | | - "@types/dotenv": "^8.2.0", |
38 | | - "@types/glob": "^7.1.1", |
39 | | - "@types/jsdom": "^12.2.4", |
40 | | - "@types/mocha": "^5.2.7", |
41 | | - "@types/node": "^12.12.7", |
42 | | - "assert": "^2.0.0", |
43 | | - "concurrently": "^5.0.0", |
44 | | - "dotenv": "^8.2.0", |
45 | | - "glob": "^7.1.6", |
46 | | - "graphql": "^14.5.8", |
47 | | - "mocha": "^6.2.2", |
48 | | - "prettier": "^1.19.1", |
49 | | - "tslint": "^5.20.1", |
50 | | - "tslint-config-prettier": "^1.18.0", |
51 | | - "typescript": "^3.7.2", |
52 | | - "vscode": "^1.1.36", |
53 | | - "vscode-test": "^1.2.3" |
54 | | - }, |
55 | | - "engines": { |
56 | | - "vscode": "^1.34.0" |
57 | | - }, |
58 | | - "activationEvents": [ |
59 | | - "onCommand:coderoad.start" |
60 | | - ], |
61 | | - "categories": [ |
62 | | - "Other" |
63 | | - ], |
64 | | - "contributes": { |
65 | | - "commands": [ |
66 | | - { |
67 | | - "command": "coderoad.start", |
68 | | - "title": "Start", |
69 | | - "category": "CodeRoad" |
70 | | - } |
71 | | - ] |
72 | | - }, |
73 | | - "displayName": "CodeRoad", |
74 | | - "galleryBanner": { |
75 | | - "color": "#C80000", |
76 | | - "theme": "dark" |
77 | | - }, |
78 | | - "publisher": "CodeRoad" |
| 2 | + "name": "coderoad", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Interactive tutorials in your editor", |
| 5 | + "homepage": "https://github.com/shmck/coderoad-vscode/README.md", |
| 6 | + "bugs": { |
| 7 | + "url": "https://github.com/shmck/coderoad-vscode/issues", |
| 8 | + "email": "shawn.j.mckay@gmail.com" |
| 9 | + }, |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "https://github.com/shmck/coderoad-vscode.git" |
| 13 | + }, |
| 14 | + "license": "SEE LICENSE IN LICENSE.md", |
| 15 | + "author": { |
| 16 | + "name": "Shawn McKay <shawn.j.mckay@gmail.com>" |
| 17 | + }, |
| 18 | + "main": "./build/extension.js", |
| 19 | + "scripts": { |
| 20 | + "build": "rm -rf build && concurrently \"npm run build:ext\" \"npm run build:web\"", |
| 21 | + "build:ext": "npm run compile", |
| 22 | + "build:web": "cd web-app && npm run build", |
| 23 | + "compile": "tsc -p ./", |
| 24 | + "postinstall": "node ./node_modules/vscode/bin/install", |
| 25 | + "machine": "node ./out/state/index.js", |
| 26 | + "storybook": "cd web-app && npm run storybook", |
| 27 | + "test": "jest", |
| 28 | + "test:ext": "node ./build/test/runTest.js", |
| 29 | + "vscode:prepublish": "npm run build", |
| 30 | + "watch": "tsc -watch -p ./" |
| 31 | + }, |
| 32 | + "dependencies": { |
| 33 | + "jsdom": "^15.2.1" |
| 34 | + }, |
| 35 | + "devDependencies": { |
| 36 | + "@types/assert": "^1.4.3", |
| 37 | + "@types/dotenv": "^8.2.0", |
| 38 | + "@types/glob": "^7.1.1", |
| 39 | + "@types/jsdom": "^12.2.4", |
| 40 | + "@types/mocha": "^5.2.7", |
| 41 | + "@types/node": "^12.12.7", |
| 42 | + "assert": "^2.0.0", |
| 43 | + "concurrently": "^5.0.0", |
| 44 | + "dotenv": "^8.2.0", |
| 45 | + "glob": "^7.1.6", |
| 46 | + "graphql": "^14.5.8", |
| 47 | + "mocha": "^6.2.2", |
| 48 | + "prettier": "^1.19.1", |
| 49 | + "tslint": "^5.20.1", |
| 50 | + "tslint-config-prettier": "^1.18.0", |
| 51 | + "typescript": "^3.7.2", |
| 52 | + "vscode": "^1.1.36", |
| 53 | + "vscode-test": "^1.2.3" |
| 54 | + }, |
| 55 | + "engines": { |
| 56 | + "vscode": "^1.40.0" |
| 57 | + }, |
| 58 | + "activationEvents": [ |
| 59 | + "onCommand:coderoad.start" |
| 60 | + ], |
| 61 | + "categories": [ |
| 62 | + "Other" |
| 63 | + ], |
| 64 | + "contributes": { |
| 65 | + "commands": [ |
| 66 | + { |
| 67 | + "command": "coderoad.start", |
| 68 | + "title": "Start", |
| 69 | + "category": "CodeRoad" |
| 70 | + } |
| 71 | + ] |
| 72 | + }, |
| 73 | + "displayName": "CodeRoad", |
| 74 | + "galleryBanner": { |
| 75 | + "color": "#C80000", |
| 76 | + "theme": "dark" |
| 77 | + }, |
| 78 | + "publisher": "CodeRoad" |
79 | 79 | } |
0 commit comments