-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "shift-fuzzer",
"version": "3.0.0",
"description": "generate random valid Shift format ASTs",
"author": "Shape Security",
"homepage": "https://github.com/shapesecurity/shift-fuzzer-js",
"repository": {
"type": "git",
"url": "https://github.com/shapesecurity/shift-fuzzer-js.git"
},
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"build": "echo nothing to do",
"test": "mocha --inline-diffs --check-leaks --timeout 60000 --slow 30000 --ui tdd --reporter dot --recursive test"
},
"dependencies": {
"shift-ast": "7.0.0"
},
"devDependencies": {
"esutils": "2.0.2",
"expect.js": "^0.3.1",
"mocha": "^8.1.3",
"shift-codegen": "8.0.0",
"shift-parser": "8.0.0",
"shift-validator": "6.0.0"
},
"keywords": [
"Shift",
"AST",
"fuzzer",
"fuzz",
"generate",
"generator",
"random",
"abstract",
"syntax",
"tree"
],
"bugs": {
"url": "https://github.com/shapesecurity/shift-fuzzer-js/issues"
},
"license": "Apache-2.0"
}