-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "@bmc-compuware/ispw-action-utilities",
"version": "1.3.0",
"description": "Utilities to be used in ISPW GitHub actions",
"main": "index.js",
"scripts": {
"build": "ncc build",
"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 80 --branches 80 --statements 80 --functions 80",
"check": "npm run lint && npm run test && npm run coverage",
"prepublishOnly": "npm run check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Compuware-ISPW/ispw-action-utilities.git"
},
"keywords": [
"ispw",
"compuware",
"bmc",
"github",
"actions",
"rest"
],
"author": "BMC-Compuware",
"license": "MIT",
"bugs": {
"url": "https://github.com/Compuware-ISPW/ispw-action-utilities/issues"
},
"homepage": "https://github.com/Compuware-ISPW/ispw-action-utilities#readme",
"dependencies": {
"axios": "^0.21.1",
"dompurify": "^3.1.6",
"jsdom": "^24.1.0"
},
"devDependencies": {
"chai": "^4.3.4",
"@eslint/js": "^9.8.0",
"eslint-config-google": "^0.14.0",
"esm": "^3.2.25",
"mocha": "^8.3.2",
"nock": "^13.0.11",
"nyc": "^15.1.0"
}
}