forked from swellaby/azp-bump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.88 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "azp-bump",
"version": "3.1.28",
"description": "Lib/CLI for bumping the version of Azure Pipelines Task Manifest files",
"license": "MIT",
"main": "lib/index.js",
"bin": "bin/azp-bump.js",
"types": "lib/index.d.ts",
"author": {
"email": "[email protected]",
"name": "Swellaby",
"url": "http://swellaby.com"
},
"contributors": [
{
"email": "[email protected]",
"name": "Caleb Cartwright",
"url": "https://github.com/calebcartwright"
}
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "npm run lint && npm run coverage:enforce",
"clean": "rimraf .testresults .coverage",
"coverage": "nyc --report-dir .coverage/unit --check-coverage false npm run test:unit",
"coverage:enforce": "nyc --report-dir .coverage/unit npm run test:unit",
"coverage:open": "npm run coverage && open-cli .coverage/unit/index.html",
"coverage:component": "nyc --report-dir .coverage/component --check-coverage false npm run test:component",
"coverage:component:enforce": "nyc --report-dir .coverage/component npm run test:component",
"coverage:component:open": "npm run coverage:component && open-cli .coverage/component/index.html",
"lint": "eslint **/*.js",
"test": "npm run test:unit",
"test:all": "npm run test:unit && npm run test:component",
"test:unit": "mocha --config test/unit/.mocharc.yml",
"pretest:unit": "rimraf .testresults/unit .coverage/unit",
"test:component": "mocha --config test/component/.mocharc.yml",
"pretest:component": "rimraf .testresults/component .coverage/component",
"version:tagless": "npm --no-git-tag-version version patch",
"prepublish:local": "npm run build && npm run version:tagless",
"publish:local": "npm publish --access public",
"dev:reset": "npm run clean && node -e \"require('rimraf').sync('node_modules');\" && npm run dev:setup",
"dev:setup": "npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swellaby/azp-bump.git"
},
"keywords": [
"azure devops",
"azure pipelines",
"azp",
"azp bump",
"vsts",
"vsts-bump",
"vsts bump",
"vsts-task",
"vsts task",
"vsts task bump",
"vsts-task-bump"
],
"bugs": {
"url": "https://github.com/swellaby/azp-bump/issues"
},
"homepage": "https://github.com/swellaby/azp-bump",
"devDependencies": {
"@swellaby/eslint-config": "^2.0.0",
"@swellaby/nyc-config": "^3.0.7",
"chai": "^4.2.0",
"eslint": "^8.0.0",
"husky": "^4.3.0",
"mocha": "^9.0.0",
"mocha-multi-reporters": "^1.1.7",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.1.0",
"open-cli": "^7.0.0",
"rimraf": "^3.0.2",
"sinon": "^11.0.0"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^8.0.0",
"fancy-log": "^1.3.3",
"glob": "^7.1.4",
"semver": "^7.0.0"
}
}