-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.73 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
54
55
56
{
"name": "run-cpptest-action",
"version": "2.0.2",
"private": true,
"description": "A GitHub Action for running Parasoft C/C++test analysis",
"main": "lib/main.js",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint --ext .ts .",
"test": "nyc mocha -u tdd -r ts-node/register 'tests/**/*.ts'",
"package": "ncc build --license licenses.txt && copyfiles --flat ./src/messages/*.json ./dist/messages && copyfiles --flat ./samples/*.xsl ./dist",
"clean": "rimraf dist",
"all": "npm run clean && npm run compile && npm run lint && npm run test && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parasoft/run-cpptest-action.git"
},
"author": {
"name": "Parasoft Corp.",
"url": "https://github.com/parasoft"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/parasoft/run-cpptest-action/issues"
},
"homepage": "https://github.com/parasoft/run-cpptest-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "1.0.11",
"@actions/io": "^1.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^20.12.12",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.36.1",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"fs-extra": "^10.1.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"sinon": "^15.0.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.4",
"typescript-eslint": "0.0.1-alpha.0"
}
}