forked from kaycoinsUSA/sourcegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 776 Bytes
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
{
"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": {
"eslint": "eslint --cache '**/*.[jt]s?(x)'",
"stylelint": "stylelint 'src/**/*.scss'",
"test": "jest",
"graphql": "gulp graphQlSchema",
"schema": "gulp schema",
"watch-schema": "gulp watchSchema"
},
"sideEffects": true
}