-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"$schema": "https://raw.githubusercontent.com/sourcegraph/sourcegraph/master/shared/src/schema/extension.schema.json",
"name": "composer-checker",
"description": "Add indexing of Composer packages used in a project.",
"publisher": "BigWing",
"activationEvents": [
"*"
],
"wip": true,
"categories": [],
"tags": [],
"contributes": {
"actions": [],
"menus": {
"editor/title": [],
"commandPalette": []
},
"configuration": {}
},
"version": "0.0.0-DEVELOPMENT",
"license": "MIT",
"main": "dist/composer-checker.js",
"scripts": {
"tslint": "tslint -p tsconfig.json './src/**/*.ts'",
"typecheck": "tsc -p tsconfig.json",
"build": "parcel build --out-file dist/composer-checker.js src/composer-checker.ts",
"symlink-package": "mkdirp dist && lnfs ./package.json ./dist/package.json",
"serve": "npm run symlink-package && parcel serve --no-hmr --out-file dist/composer-checker.js src/composer-checker.ts",
"watch:typecheck": "tsc -p tsconfig.json -w",
"watch:build": "tsc -p tsconfig.dist.json -w",
"sourcegraph:prepublish": "npm run typecheck && npm run build"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Edge versions",
"last 1 Safari versions"
],
"devDependencies": {
"@sourcegraph/tsconfig": "^4.0.0",
"@sourcegraph/tslint-config": "^13.4.0",
"lnfs-cli": "^2.1.0",
"mkdirp": "^0.5.1",
"parcel-bundler": "^1.12.4",
"sourcegraph": "^23.0.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}