generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.35 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": "configurator",
"version": "0.0.10",
"private": true,
"description": "A GitHub Action that configures statically compiled tools",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build --no-cache",
"test": "mocha --timeout 90000 --require ts-node/register --recursive ./test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineerd/configurator.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Engineerd",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"fs-extra": "^10.0.0",
"mustache": "^4.0.1",
"semver": "^7.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-fs": "^2.0.2",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^2.2.41",
"@types/mustache": "^4.0.1",
"@types/node": "^16.18.12",
"@types/rimraf": "2.0.2",
"@types/semver": "^7.3.3",
"@types/uuid": "^10.0.0",
"@vercel/ncc": "^0.36.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-fs": "^2.0.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.0",
"ts-node": "^8.8.1",
"typescript": "^4.4.0"
}
}