-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.61 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
{
"name": "code-pipeline-deployment-list",
"version": "1.0.0",
"description": "Retrieves ISPW deployments using optional filter criteria. Potentially, large amounts of data may be returned from the deployments API. This API has a limit of 5000 records. You should attempt to set as many query parameters as possible to reduce the number of items returned.",
"publisher": "BMC",
"main": "./dist/index.js",
"scripts": {
"build": "ncc build index.js -o dist",
"lint": "npx eslint ./**.js --fix",
"test": "nyc --all=true --exclude=\"dist/**\" --exclude=\"coverage/**\" --exclude=\"test/**\" --reporter=json --reporter=text mocha",
"coverage": "nyc check-coverage --lines 60 --branches 75 --statements 60 --functions 60",
"check": "npm run lint && npm run build && npm run test && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmc-compuware/code-pipeline-deployment-list.git"
},
"keywords": ["ISPW", "Compuware", "BMC", "AMI", "DevX", "deployment list", "code-pipeline"],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bmc-compuware/code-pipeline-deployment-list/issues"
},
"homepage": "https://github.com/bmc-compuware/code-pipeline-deployment-list#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"@bmc-compuware/ispw-action-utilities": "^1.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"esm": "^3.2.25",
"mocha": "^8.3.2",
"nock": "^13.0.11",
"nyc": "^15.1.0"
}
}