-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "replacetokens-action",
"version": "1.2.0",
"description": "An action to replace tokens with variables and/or secrets.",
"private": true,
"author": "Guillaume ROUCHON",
"license": "MIT",
"keywords": [
"actions",
"replace",
"tokens",
"variables",
"substitution"
],
"homepage": "https://github.com/qetza/replacetokens-action#readme",
"bugs": {
"url": "https://github.com/qetza/replacetokens-action/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qetza/replacetokens-action"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npm run format && npm run package",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"package": "ncc build src/index.ts --license licenses.txt && node scripts/package.js",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/sdk-trace-base": "^1.22.0",
"@qetza/replacetokens": "^1.7.0",
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^16.11.39",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^4.8.4"
}
}