-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "hubspot",
"description": "HubSpot link previews and customer autocompletion (by name) on GitHub",
"publisher": "sourcegraph",
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/sourcegraph-hubspot"
},
"categories": ["External services"],
"wip": true,
"contributes": {
"configuration": {
"title": "HubSpot configuration",
"type": "object",
"required": [
"hubspot.apiKey"
],
"properties": {
"hubspot.apiKey": {
"description": "HubSpot API key (HubSpot user menu > Integrations > Integrations > API key)",
"type": "string",
"examples": [
"aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
]
}
}
}
},
"version": "0.0.0-DEVELOPMENT",
"license": "MIT",
"main": "dist/extension.js",
"scripts": {
"tslint": "tslint -p tsconfig.json './src/**/*.ts'",
"typecheck": "tsc -p tsconfig.json",
"build": "parcel build --out-file dist/extension.js src/extension.ts",
"serve": "parcel serve --no-hmr --out-file dist/extension.js src/extension.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"
],
"devDependencies": {
"@sourcegraph/prettierrc": "^2.2.0",
"@sourcegraph/tsconfig": "^4.0.0",
"@sourcegraph/tslint-config": "^13.0.0",
"@types/lodash": "^4.14.123",
"parcel-bundler": "^1.11.0",
"sourcegraph": "^24.7.0",
"tslint": "^5.15.0",
"typescript": "^3.4.2"
},
"dependencies": {
"localforage": "^1.7.3",
"lodash": "^4.17.11",
"rxjs": "^6.4.0"
}
}