-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.96 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.96 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
{
"name": "run-soatest-action",
"version": "1.0.0",
"description": "A GitHub Action for running functional tests with Parasoft SOAtest and reviewing results.",
"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 && npm run extra-tasks",
"extra-tasks": "node ./scripts/extra-tasks.js"
},
"nyc": {
"reporter": [
"html",
"cobertura"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasoft/run-soatest-action.git"
},
"author": "Parasoft Corp.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/parasoft/run-soatest-action/issues"
},
"homepage": "https://github.com/parasoft/run-soatest-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"string-format": "^2.0.0",
"which": "^4.0.0"
},
"devDependencies": {
"@types/node": "^16.18.11",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vercel/ncc": "^0.38.1",
"@types/string-format": "^2.0.3",
"@types/which": "^3.0.3",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"should": "^13.2.3",
"typescript": "^5.4.2",
"copyfiles": "^2.4.1",
"sinon": "^17.0.1",
"ts-node": "^10.9.2"
}
}