-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.52 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.52 KB
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
{
"name": "filetransform",
"version": "1.0.0",
"description": "File transformation and variable substitution task: Update tokens in your XML based configuration files and then replaces those tokens with variable values. Currently XML, JSON, YAML file formats are supported for variable substitution.",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.test.ts",
"build": "tsc && esbuild ./src/variableSubstitution.ts --bundle --platform=node --outfile=lib/variableSubstitution.js && npm run format && git add lib/*",
"coverage": "nyc npm run test",
"bundle": "esbuild ./src/variableSubstitution.ts --bundle --platform=node --outfile=dist/variableSubstitution.js",
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/im-open/variable-substitution.git"
},
"keywords": [
"action",
"utility"
],
"author": "wtw,Sumiran Aggarwal <suaggar@microsoft.com>",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/minimatch": "^3.0.5",
"@types/mocha": "^5.2.7",
"@types/node": "^12.20.55",
"chai": "^4.3.7",
"esbuild": "^0.15.10",
"install": "^0.13.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^7.5.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
},
"dependencies": {
"@actions/core": "^1.10.0",
"js-yaml": "^3.14.1",
"ltx": "^2.10.0",
"minimatch": "^4.0.0"
}
}