forked from nanasess/setup-chromedriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "setup-chromedriver",
"version": "2.0.0",
"private": true,
"description": "setup-chromedriver",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanasess/setup-chromedriver.git"
},
"keywords": [
"actions",
"php",
"setup"
],
"author": "nanasess",
"license": "GPL",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.5.0",
"typed-rest-client": "^1.8.9"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^18.16.0",
"@types/selenium-webdriver": "^4.1.13",
"@types/semver": "^7.3.13",
"@types/yauzl": "^2.10.0",
"@vercel/ncc": "^0.36.1",
"husky": "^8.0.3",
"jest": "^27.5.1",
"jest-circus": "^29.5.0",
"prettier": "^2.8.8",
"selenium-webdriver": "^4.9.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run build && npm run format",
"post-commit": "npm prune --production && git add node_modules/* && git commit -m \"Husky commit correct node modules\""
}
}
}