-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "x32-fuzzer",
"description": "The Behringer X32 digital mixer has a rare crash bug. Let's find it.",
"version": "1.0.0",
"contributors": [
"Alex Van Camp <[email protected]>"
],
"dependencies": {
"convict": "^5.1.0",
"d3-random": "^1.1.2",
"get-port": "^5.0.0",
"osc": "^2.3.1",
"pseudo-random-buffer": "^1.0.0",
"tslib": "^1.10.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@supportclass/prettier-config": "^1.0.0",
"@supportclass/tsconfig-base": "^1.0.2",
"@types/convict": "^4.2.1",
"@types/d3-random": "^1.1.2",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-xo": "^0.26.0",
"eslint-config-xo-typescript": "^0.15.0",
"husky": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"trash-cli": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"homepage": "https://gamesdonequick.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/GamesDoneQuick/x32-fuzzer.git"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"static": "npm-run-all -s static:*",
"static:lint": "eslint --parser-options=project:tsconfig.json \"src/**/*.ts\"",
"static:format": "prettier --list-different \"**/*.{ts,js,html,css,json,yml}\"",
"build": "tsc -p \"./tsconfig.json\"",
"format": "pretty-quick"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
}
}