-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 957 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 957 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@sourcegraph/web-smoke-tests",
"description": "Functionality monitoring for Sourcegraph applications",
"license": "Apache-2.0",
"version": "0.0.1",
"bin": {
"start": "./lib/src/index.js"
},
"scripts": {
"test": "yarn build && SOURCEGRAPH_URL=https://sourcegraph.com node ./lib/src/index.js",
"eslint": "eslint '**/*.[tj]s'",
"prettier-check": "prettier --check .",
"semantic-release": "semantic-release",
"build": "tsc"
},
"dependencies": {
"@sourcegraph/tsconfig": "^4.0.1",
"execa": "^5.1.1",
"jest": "25.5.4",
"jest-junit": "^13.2.0",
"jest-puppeteer": "^6.1.0",
"puppeteer": "^13.0.1"
},
"devDependencies": {
"@types/expect-puppeteer": "4.4.7",
"@types/jest": "25.2.3",
"@types/jest-environment-puppeteer": "5.0.0",
"@types/puppeteer": "5.4.5"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}