forked from lukka/get-cmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "action-get-ninja",
"version": "1.0.0",
"description": "GitHub action to get ninja installed and cached on the GitHub runner.",
"repository": {
"type": "git",
"url": "https://github.com/urkle/action-get-cmake"
},
"author": "Edward Rudd (https://github.com/urkle)",
"license": "MIT",
"scripts": {
"pack": "gulp && ncc build build/src/action.js -o dist",
"clean": "rm -rf ./build",
"build": "gulp build",
"lint": "gulp eslint",
"test": "npm run pack && gulp test"
},
"devDependencies": {
"@types/node": "^11.15.9",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^6.7.2",
"eslint-plugin-jest": "^22.21.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-install": "^1.1.0",
"gulp-jest": "^4.0.4",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"jest": "^27.4.5",
"jest-circus": "^27.4.5",
"ts-jest": "^27.1.2",
"ts-node": "^8.5.4",
"typescript": "^4.0.3"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"@types/jest": "^27.4.0",
"jest-cli": "^27.4.5",
"node-notifier": "^10.0.0"
}
}