forked from cloudtruth/configure-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.89 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
{
"name": "configure-action",
"version": "2.2.1",
"description": "Securely deliver CloudTruth configuration and secrets into your GitHub Actions workflows.",
"main": "lib/main.js",
"scripts": {
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"generate-client": "npx swagger-typescript-api -p openapi.json -o ./src/gen --modular --responses --route-types --extract-request-params --extract-request-body",
"lint": "eslint",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest -i --coverage --runInBand --detectOpenHandles --verbose",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"engines": {
"node": ">=20",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudtruth/configure-action.git"
},
"keywords": [
"configuration",
"secrets",
"configuration management",
"environment variables",
"git-secrets",
"gitops"
],
"author": "CloudTruth, Inc.",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"isomorphic-fetch": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@scaleleap/jest-polly": "^1.5.61",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.25",
"@types/uuid": "^8.3.4",
"@typescript-eslint/parser": "^5.21.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.14.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.1.5",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.6.2",
"swagger-typescript-api": "^9.3.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}