-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "@jazzer.js/fuzzer",
"version": "4.0.0",
"description": "Jazzer.js libfuzzer-based fuzzer for Node.js",
"homepage": "https://github.com/CodeIntelligenceTesting/jazzer.js#readme",
"author": "Code Intelligence",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CodeIntelligenceTesting/jazzer.js/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:CodeIntelligenceTesting/jazzer.js.git",
"directory": "packages/fuzzer"
},
"main": "dist/fuzzer.js",
"types": "dist/fuzzer.d.ts",
"scripts": {
"prebuild": "cmake-js build --out build",
"build": "node ../../scripts/build-fuzzer.js",
"format:fix": "clang-format -i *.cpp shared/*.cpp shared/*.h",
"lint": "find . -path ./build -prune -type f -o -iname '*.h' -o -iname '*.cpp' | xargs clang-tidy"
},
"binary": {
"napi_versions": [
4
]
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^8.0.0",
"node-addon-api": "^8.7.0"
},
"devDependencies": {
"@types/bindings": "^1.5.5",
"@types/node": "^25.6.0",
"clang-format": "^1.8.0"
},
"engines": {
"node": ">= 14.0.0",
"npm": ">= 7.0.0"
}
}