-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 2.08 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
{
"name": "replacetokens-task",
"version": "1.0.0",
"description": "An Azure Pipelines task to replace tokens in text files with variable values.",
"author": "Guillaume ROUCHON",
"license": "MIT",
"homepage": "https://github.com/qetza/replacetokens-task#readme",
"bugs": {
"url": "https://github.com/qetza/replacetokens-task/issues"
},
"keywords": [
"azure pipelines",
"release",
"build",
"token",
"replace",
"variable",
"substitution"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qetza/replacetokens-task.git"
},
"scripts": {
"build": "npm run build:v3 && npm run build:v4 && npm run build:v5 && npm run build:v6",
"build:v3": "tsc --project tasks/ReplaceTokensV3/tsconfig.json",
"build:v4": "tsc --project tasks/ReplaceTokensV4/tsconfig.json",
"build:v5": "tsc --project tasks/ReplaceTokensV5/tsconfig.json",
"build:v6": "tsc --project tasks/ReplaceTokensV6/tsconfig.json",
"test": "npm run build && mocha tasks/**/tests/L0.js",
"test:v3": "npm run build:v3 && mocha tasks/ReplaceTokensV3/dist/tests/L0.js",
"test:v4": "npm run build:v4 && mocha tasks/ReplaceTokensV4/dist/tests/L0.js",
"test:v5": "npm run build:v5 && mocha tasks/ReplaceTokensV5/dist/tests/L0.js",
"test:v6": "npm run build:v6 && mocha tasks/ReplaceTokensV6/dist/tests/L0.js",
"package": "node scripts/package.js",
"package:public": "node scripts/package.js --public",
"format": "npm run format:v3 && npm run format:v4 && npm run format:v5 && npm run format:v6",
"format:v3": "prettier --write tasks/ReplaceTokensV3/**/*.ts",
"format:v4": "prettier --write tasks/ReplaceTokensV4/**/*.ts",
"format:v5": "prettier --write tasks/ReplaceTokensV5/**/*.ts",
"format:v6": "prettier --write tasks/ReplaceTokensV6/**/*.ts",
"format:check": "prettier --check **/*.ts"
},
"devDependencies": {
"@types/node": "^10.17.0",
"@vercel/ncc": "^0.38.1",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"shelljs": "^0.8.5",
"tfx-cli": "^0.16.0",
"typescript": "^4.8.4"
}
}