-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
73 lines (73 loc) · 2.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "jazzer.js",
"version": "2.1.0",
"description": "Coverage-guided, in-process fuzzing for Node.js",
"homepage": "https://github.com/CodeIntelligenceTesting/jazzer.js#readme",
"keywords": [
"coverage-guided",
"fuzzing"
],
"author": "Code Intelligence",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CodeIntelligenceTesting/jazzer.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeIntelligenceTesting/jazzer.js.git"
},
"scripts": {
"prepare": "husky install",
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf -g **/node_modules **/tests/**/package-lock.json **/examples/**/package-lock.json **/dist **/coverage packages/fuzzer/build packages/fuzzer/prebuilds",
"compile:watch": "tsc -b tsconfig.build.json --incremental --pretty --watch",
"test": "run-script-os",
"test:default": "npm run test:jest",
"test:linux:darwin": "npm run test:jest && cd tests && sh ../scripts/run_all.sh fuzz",
"test:win32": "npm run test:jest && cd tests && ..\\scripts\\run_all.bat fuzz",
"test:jest": "jest && npm run test --ws --if-present",
"test:jest:coverage": "jest --coverage",
"test:jest:watch": "jest --watch",
"example": "run-script-os",
"example:linux:darwin": "cd examples && sh ../scripts/run_all.sh dryRun",
"example:win32": "cd examples && ..\\scripts\\run_all.bat dryRun",
"lint": "eslint . && npm run lint --ws --if-present",
"lint:fix": "eslint . --fix && npm run lint:fix --ws --if-present",
"format": "prettier --check . && npm run format --ws --if-present",
"format:fix": "prettier --write --ignore-unknown . && npm run format:fix --ws --if-present",
"check": "npm run format && npm run lint",
"fix": "npm run format:fix && npm run lint:fix"
},
"devDependencies": {
"@types/bindings": "^1.5.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-markdownlint": "^0.5.0",
"husky": "^8.0.3",
"istanbul-lib-coverage": "^3.2.2",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "3.1.0",
"rimraf": "^5.0.5",
"run-script-os": "^1.1.6",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"**/!(compile_commands.json)*": "prettier --write --ignore-unknown --allow-empty --log-level debug"
},
"engines": {
"node": ">= 14.0.0",
"npm": ">= 7.0.0"
}
}