forked from lukka/run-cmake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 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
{
"name": "run-cmake-action",
"version": "0.0.1",
"description": "GitHub action for running CMake.",
"repository": {
"type": "git",
"url": "https://github.com/lukka/run-cmake-action"
},
"author": "Luca Cappa (https://github.com/lukka)",
"license": "MIT",
"scripts": {
"pack": "gulp && ncc build build/src/cmake-action.js -o dist",
"clean": "rm -rf ./build",
"build": "gulp build",
"lint": "gulp eslint",
"test": "npm run pack && gulp test"
},
"devDependencies": {
"@types/node": "^11.9.3",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@zeit/ncc": "^0.20.5",
"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.3",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.0",
"jest": "^24.9.0",
"ts-node": "^8.5.4",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3",
"jest-circus": "^24.9.0",
"minimist": ">=1.2.2"
},
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"@actions/io": "^1.0.2",
"@types/adm-zip": "^0.4.32",
"@types/follow-redirects": "^1.8.0",
"@types/jest": "^24.9.0",
"adm-zip": "^0.4.13",
"del": "^5.1.0",
"follow-redirects": "^1.9.0",
"jest-cli": "^24.9.0",
"lodash.template": ">=4.5.0",
"strip-json-comments": "^3.0.1"
}
}