forked from microsoft/variable-substitution
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.24 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
{
"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",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SumiranAgg/filetransform.git"
},
"keywords": [
"action",
"utility"
],
"author": "Sumiran Aggarwal <suaggar@microsoft.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SumiranAgg/filetransform/issues"
},
"homepage": "https://github.com/SumiranAgg/filetransform#readme",
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.6",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"dependencies": {
"@actions/core": "^1.2.6",
"js-yaml": "^3.13.1",
"ltx": "^2.9.2",
"minimatch": "^3.0.4"
}
}