-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.09 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
65
{
"name": "configure-action",
"version": "3.0.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).replaceAll('\\\"', \\\"'\\\")\" > 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",
"lint:fix": "eslint --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest -i --coverage --runInBand --detectOpenHandles",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"engines": {
"node": ">=18.0.0",
"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.11.1",
"@actions/github": "^6.0.0",
"uuid": "^11.0.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.0.0",
"@scaleleap/jest-polly": "^1.6.17",
"@types/jest": "^29.0.0",
"@types/node": "^22.10.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.12.2",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.17.0",
"eslint-plugin-github": "^5.1.5",
"eslint-plugin-jest": "^28.0.0",
"globals": "^15.14.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"jest-fetch-mock": "^3.0.3",
"jest-jasmine2": "^29.0.0",
"js-yaml": "^4.1.0",
"prettier": "^3.4.2",
"swagger-typescript-api": "^13.0.22",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}