-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.35 KB
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
{
"name": "coding-examples",
"title": "Coding Examples",
"description": "Provides canonical examples of class and function usage.",
"publisher": "mhewett99",
"activationEvents": [
"*"
],
"contributes": {
"actions": [],
"menus": {
"editor/title": [],
"commandPalette": []
},
"configuration": {}
},
"version": "0.0.0-DEVELOPMENT",
"license": "MIT",
"main": "dist/coding-examples.js",
"scripts": {
"tslint": "tslint -p tsconfig.json './src/**/*.ts'",
"typecheck": "tsc -p tsconfig.json",
"build": "parcel build --out-file dist/coding-examples.js src/coding-examples.ts",
"serve": "parcel serve --no-hmr --out-file dist/coding-examples.js src/coding-examples.ts",
"watch:typecheck": "tsc -p tsconfig.json -w",
"watch:build": "tsc -p tsconfig.dist.json -w",
"sourcegraph:prepublish": "npm run build"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Edge versions",
"last 1 Safari versions"
],
"dependencies": {
"@sourcegraph/prettierrc": "^2.2.0",
"rxjs": "^6.3.2",
"vscode-ws-jsonrpc": "^0.0.1-alpha.5"
},
"devDependencies": {
"@sourcegraph/tsconfig": "^3.0.0",
"@sourcegraph/tslint-config": "^12.0.0",
"parcel-bundler": "^1.10.3",
"sourcegraph": "^18.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
}
}