-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "cpp-practice",
"version": "0.1.0",
"description": "C++ Practice.",
"main": "scripts/createPractices.ts",
"repository": "[email protected]:yi-ge/cpp-practice.git",
"author": "yi-ge <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"keywords": [
"practice",
"arithmetic",
"c++",
"clang",
"cpp"
],
"scripts": {
"prebuild": "cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=Debug -S . -B build -G Ninja",
"build": "cmake --build build --config Debug --target all --",
"beforeTest": "node ./scripts/before-test.cjs && npm run build",
"test": "npm run build && node ./scripts/out-test-result.cjs",
"afterTest": "node ./scripts/after-test.cjs",
"coverage": "node ./scripts/coverage.cjs",
"start": "lcp c++",
"postinstall": "node ./scripts/postinstall.cjs"
},
"dependencies": {
"leetcode-test-helper": "^0.4.8",
"puppeteer": "^15.3.0",
"puppeteer-extra": "^3.3.1",
"puppeteer-extra-plugin-stealth": "^2.10.2",
"xml2js": "^0.6.0"
},
"devDependencies": {
"glob": "^10.2.6"
}
}