-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.05 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
{
"name": "@magikcraft/commando",
"version": "0.0.5",
"description": "Add commands to Minecraft",
"homepage": "https://www.magikcraft.io",
"author": {
"name": "Josh Wulf",
"email": "[email protected]",
"url": "https://github.com/jwulf"
},
"keywords": [
"minecraft",
"scriptcraft",
"magikcraft"
],
"devDependencies": {
"@magikcraft/op-all": "^1.0.0",
"@scriptcraft/types": "^1.1.16",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.3.1",
"jest": "^23.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"engines": {
"npm": ">= 4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,css,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"scripts": {},
"repository": "Magikcraft/commando",
"jest": {
"testEnvironment": "node"
},
"license": "Apache-2.0"
}