generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
58 lines (58 loc) · 1.65 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
58
{
"name": "setup-chromedriver",
"version": "2.0.0",
"private": true,
"description": "setup-chromedriver",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build lib/setup-chromedriver.js --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.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.2",
"typed-rest-client": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^22.10.1",
"@types/selenium-webdriver": "^4.1.27",
"@types/semver": "^7.5.8",
"@types/yauzl": "^2.10.3",
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"jest": "^27.5.1",
"jest-circus": "^29.7.0",
"prettier": "^3.4.1",
"selenium-webdriver": "^4.27.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.2",
"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\""
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}