-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "run-parasoft-dottest",
"version": "2.0.1",
"private": true,
"description": "Run code analysis with Parasoft dotTEST and review results",
"main": "lib/run-dottest-analyzer.js",
"scripts": {
"compile": "npm run copyArtifacts && tsc -p ./ && ncc build",
"watch": "tsc -watch -p ./",
"lint": "eslint --ext .ts .",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha -u tdd -r ts-node/register 'tests/**/*.ts'",
"copyArtifacts": "copyfiles --flat ./src/messages/*.json ./dist/messages && copyfiles --flat ./sarif.xsl ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasoft/run-dottest-action.git"
},
"author": {
"name": "Parasoft Corp.",
"url": "https://github.com/parasoft"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/parasoft/run-dottest-action/issues"
},
"homepage": "https://github.com/parasoft/run-dottest-action#readme",
"dependencies": {
"@actions/core": "^v1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "1.0.11",
"@actions/io": "^1.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.11",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.29.2",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"fs-extra": "^10.1.0",
"mocha": "^9.2.2",
"sinon": "^15.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.9.4",
"typescript-eslint": "0.0.1-alpha.0"
}
}