-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.04 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
61
{
"name": "cpp-actions",
"version": "1.9.5",
"private": true,
"description": "GitHub Actions for C++ projects",
"workspaces": [
"utils/esbuild",
"common/trace-commands",
"common/gh-inputs",
"common/pretty-errors",
"common/action-schema",
"utils/jsdoc-linter",
"utils/update-data",
"utils/docs",
"utils/release",
"package-install",
"setup-program",
"setup-msvc",
"b2-workflow",
"flamegraph",
"create-changelog",
"setup-clang",
"setup-cmake",
"setup-gcc",
"boost-clone",
"cpp-matrix",
"cmake-workflow",
"setup-cpp",
"process-coverage"
],
"scripts": {
"update-data": "node utils/update-data/dist/index.js",
"update-action-ymls": "node --conditions=import utils/update-data/dist/action-yml.js",
"prepare": "npm run build --workspaces && npm run update-action-ymls",
"build": "npm run prepare",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 jest --passWithNoTests",
"test:coverage": "NODE_OPTIONS=--max-old-space-size=4096 jest --coverage --workerIdleMemoryLimit=512MB --passWithNoTests",
"lint": "eslint && node utils/jsdoc-linter/dist/index.js && jscpd . && knip && npm run depcheck",
"lint:eslint": "eslint",
"lint:jsdoc": "node utils/jsdoc-linter/dist/index.js",
"lint:duplication": "jscpd .",
"docs": "node utils/docs/dist/index.js",
"validate": "npm run update-data && npm run build && npm test && npm run lint",
"depcheck": "npm exec --workspaces -- depcheck",
"update-deps": "npm exec --workspaces -- npm-check-updates -u && npm install",
"version:set": "npm version --workspaces --include-workspace-root --no-git-tag-version --allow-same-version",
"release": "node utils/release/dist/index.js"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"cross-env": "^10.1.0",
"eslint": "^10.0.3",
"jest": "^29.7.0",
"jscpd": "^4.0.8",
"knip": "^5.86.0",
"ts-jest": "^29.2.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.57.0"
}
}