-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "fuzzmatic",
"version": "0.0.3",
"description": "Generates sets of data for fuzz testing.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "node ./build/cli.js ./src/test/schemas/simple-number.yaml",
"blog-post": "node ./build/cli.js ./src/test/schemas/blog-post.yaml",
"s": "npm start",
"start:dev": "nodemon",
"sd": "npm run start:dev",
"clean": "rm -rf build tsconfig.tsbuildinfo",
"c": "npm run compile",
"compile": "tsc --incremental",
"bw": "npm run build:watch",
"build:watch": "tsc --incremental --watch",
"prepublishOnly": "npm test && npm run clean && npm run compile",
"t": "npm run test",
"test": "jest",
"tw": "npm run test:watch",
"test:watch": "jest --watch"
},
"bin": {
"fuzzmatic": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ashleydavis/fuzzmatic.git"
},
"keywords": [
"fuzz testing",
"fuzzing",
"testing"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashleydavis/fuzzmatic/issues"
},
"homepage": "https://github.com/ashleydavis/fuzzmatic#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.11",
"ajv": "^8.17.1",
"jest": "^29.7.0",
"jest-json-schema": "^6.1.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"minimist": "^1.2.8",
"yaml": "^2.4.5"
}
}