forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 912 Bytes
/
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
{
"private": true,
"version": "12.0.0",
"description": "Common TypeScript/React client application code for Sourcegraph extension configuration and management, used in Sourcegraph and \"Sourcegraph for X\" products",
"main": "src/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"bugs": {
"url": "https://github.com/sourcegraph/sourcegraph/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/sourcegraph"
},
"scripts": {
"tslint:build-rules": "tsc --skipLibCheck --lib es6 --module commonjs dev/tslint/*.ts",
"tslint": "yarn -s run tslint:build-rules && tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"graphql": "gulp graphQLTypes",
"schema": "gulp schema",
"watch-schema": "gulp watchSchema",
"prepublish": "yarn run tslint:build-rules"
},
"sideEffects": false
}