-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "fast-fuzz",
"version": "5.1.7",
"description": "Test case fuzzer with branch coverage guidance.",
"main": "./dist/src/fast-fuzz.js",
"types": "./dist/src/fast-fuzz.d.ts",
"bin": {
"fast-fuzz": "./dist/src/index.js"
},
"scripts": {
"clean": "node clean.js dist build package",
"lint": "eslint ./ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./ --ext .js,.jsx,.ts,.tsx --fix",
"build": "tsc",
"build-all": "npm run clean && npm run build",
"prepare": "npm run build",
"test": "ts-mocha test/**/*.test.ts"
},
"keywords": [
"testing",
"white-box",
"unit-testing",
"typescript",
"fuzzing",
"generative-testing",
"verification"
],
"author": "Adrian Burlacu <adrian.burlacu@live.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/WeWatchWall/fast-fuzz.git"
},
"devDependencies": {
"@types/chai": "^4.3.8",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"latest-version": "^7.0.0",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"await-lock": "^2.2.2",
"class-transformer": "^0.5.1",
"commander": "^6.2.1",
"deep-object-diff": "^1.1.9",
"faker": "^4.1.0",
"fast-copy": "^3.0.1",
"fast-safe-stringify": "^2.1.1",
"flat-promise": "^1.0.3",
"glob": "^8.1.0",
"istanbul-lib-hook": "^3.0.0",
"istanbul-lib-instrument": "^6.0.1",
"log-update": "^4.0.0",
"make-matrix": "^2.3.3",
"multee": "^0.2.4",
"reflect-metadata": "^0.1.13",
"tplant": "https://github.com/WeWatchWall/fast-fuzz/raw/main/tplant-3.1.2.tgz",
"tslib": "^2.6.2"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13",
"typescript": "^5.X.X"
}
}