-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "fast-fuzz-shim",
"version": "1.0.5",
"description": "Production shim for the fast-fuzz package.",
"main": "./dist/src/fast-fuzz.js",
"types": "./dist/src/fast-fuzz.d.ts",
"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",
"updatePublish": "node publish.js"
},
"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-shim.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": {
"reflect-metadata": "^0.1.X"
},
"peerDependencies": {
"reflect-metadata": "^0.1.X",
"typescript": "^5.X.X"
}
}