-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "@jazzer.js/fuzzer",
"version": "2.1.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": {
"build-native": "prebuild --runtime napi --backend cmake-js --all --strip --verbose",
"install": "prebuild-install --runtime napi || npm run build-native",
"build:dev": "cmake-js configure --out build --debug && cmake-js build",
"build": "cmake-js configure --out build && cmake-js build",
"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": "^7.2.1",
"node-addon-api": "^7.0.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"@types/bindings": "^1.5.3",
"@types/node": "^20.8.8",
"clang-format": "^1.8.0",
"prebuild": "^12.1.0"
},
"engines": {
"node": ">= 14.0.0",
"npm": ">= 7.0.0"
}
}