forked from jwlawson/actions-setup-cmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.39 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
59
60
61
62
63
64
{
"name": "actions-setup-cmake",
"version": "1.14.2",
"description": "GitHub action to setup cmake",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jwlawson/actions-setup-cmake"
},
"scripts": {
"package": "ncc build src/index.ts -m -o dist",
"format": "prettier --write **/*.ts",
"prepare": "npm run format && npm run package",
"test": "jest"
},
"keywords": [
"cmake",
"action",
"setup"
],
"author": "John Lawson",
"license": "BSD-3-Clause-Clear",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/tool-cache": "^1.7.1",
"semver": "^7.5.2",
"typed-rest-client": "^1.8.4"
},
"devDependencies": {
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.0",
"@types/jest": "^27.0.02",
"@types/semver": "^7.3.5",
"@vercel/ncc": "^0.31.1",
"husky": "^3.1.0",
"jest": "^27.2.1",
"nock": "^13.0.11",
"prettier": "^2.0.5",
"ts-jest": "^27.0.5",
"typescript": "^4.2.4"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run prepare && git add dist/"
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
}
}