-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "@journeyapps/chromedriver-downloader",
"version": "0.1.2",
"description": "Tool to download the correct ChromeDriver version",
"main": "dist/index.js",
"repository": "https://github.com/@journeyapps/chromedriver-downloader",
"license": "MIT",
"keywords": [
"chromedriver"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"format": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --write",
"test": "ts-node ./node_modules/jasmine/bin/jasmine test/*.ts",
"prepare": "yarn run build"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"chrome-launcher": "^0.12.0",
"cross-spawn": "^7.0.1",
"find-cache-dir": "^3.2.0",
"node-fetch": "^2.6.0",
"unzipper": "^0.10.5",
"win-version-info": "^3.0.1"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.1",
"@types/find-cache-dir": "^2.0.0",
"@types/jasmine": "^3.5.0",
"@types/node": "^12.12.20",
"@types/node-fetch": "^2.5.4",
"@types/unzipper": "^0.10.1",
"jasmine": "^3.5.0",
"prettier": "^1.18.2",
"standard-version": "^6.0.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"files": [
"dist"
]
}