-
Notifications
You must be signed in to change notification settings - Fork 191
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "chrome-launcher",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "mocha --require ts-node/register --reporter=dot test/**/*-test.ts --timeout=10000",
"coverage": "nyc yarn test && nyc report --reporter=text-lcov > lcov.info",
"test-formatting": "test/check-formatting.sh",
"format": "scripts/format.sh"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.3.1",
"clang-format": "^1.0.50",
"mocha": "^3.2.0",
"nyc": "^11.0.2",
"sinon": "^2.3.5",
"ts-node": "^3.0.4",
"typescript": "2.2.1"
},
"dependencies": {
"@types/core-js": "^0.9.41",
"@types/mkdirp": "^0.3.29",
"@types/node": "6.0.66",
"@types/rimraf": "^0.0.28",
"is-wsl": "^1.1.0",
"lighthouse-logger": "^1.0.0",
"mkdirp": "0.5.1",
"rimraf": "^2.6.1"
},
"version": "0.9.0",
"description": "Launch latest Chrome with the Devtools Protocol port open",
"repository": "https://github.com/GoogleChrome/chrome-launcher/",
"author": "The Chromium Authors",
"license": "Apache-2.0"
}