-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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": "mineflayer-dashboard",
"description": "A dashboard layout for single mineflayer bot.",
"version": "2.1.0",
"main": "index.js",
"repository": "https://github.com/wvffle/mineflayer-ui.git",
"author": "Kasper Seweryn <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"readme": "markdown-toc README.md -i && git add README.md",
"changelog": "auto-changelog --remote upstream -up && git add CHANGELOG.md",
"test:manual": "test/manual/start.sh",
"test": "mocha --exit"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"blessed": "^0.1.81",
"pretty-error": "^4.0.0",
"ringbufferjs": "^2.0.0",
"split-string": "^6.1.0"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"auto-changelog": "^2.4.0",
"babel-eslint": "^10.0.3",
"flying-squid": "^1.5.0",
"husky": "^8.0.3",
"markdown-toc": "^1.2.0",
"mineflayer": "^4.14.0",
"mocha": "^10.2.0",
"standard": "^17.1.0"
},
"private": false,
"auto-changelog": {
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"husky": {
"hooks": {
"pre-commit": "yarn fix; yarn changelog; yarn readme"
}
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"afterEach",
"beforeEach",
"after",
"before"
]
}
}