-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.94 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.94 KB
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
{
"name": "parasoft-coverage-action",
"version": "1.0.0",
"private": true,
"description": "A GitHub Action for viewing the results of Parasoft coverage report on GitHub.",
"main": "lib/main.js",
"scripts": {
"compile": "npx tsc -p ./",
"watch": "npx tsc -watch -p ./",
"lint": "npx eslint . --ext .ts -f checkstyle -o eslint/eslint-report.xml || true",
"test": "nyc mocha",
"copy-files": "copyfiles --flat ./src/messages/*.json ./dist/messages && copyfiles --flat ./res/*.xsl ./dist && copyfiles --up 1 ./libs/SaxonHE12-2J/**/* ./dist",
"package": "ncc build --license licenses.txt && npm run copy-files",
"clean": "rimraf ./dist ./lib ./eslint ./coverage ./.nyc_output test-results.xml",
"all": "npm run clean && npm run compile && npm run lint && npm run test && npm run package"
},
"nyc": {
"reporter": [
"html",
"cobertura"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasoft/parasoft-coverage-action.git"
},
"author": "Parasoft Corp.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/parasoft/parasoft-coverage-action/issues"
},
"homepage": "https://github.com/parasoft/parasoft-coverage-action#readme",
"devDependencies": {
"@types/lodash": "^4.17.14",
"@types/mocha": "^10.0.10",
"@types/sax": "^1.2.7",
"@types/sinon": "^17.0.3",
"@types/string-format": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"should": "^13.2.3",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@actions/core": "^2.0.3",
"copyfiles": "^2.4.1",
"glob": "^11.0.0",
"sax": "^1.4.1",
"string-format": "^2.0.0"
}
}