forked from Magikcraft/mct1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "@magikcraft/mct1",
"version": "0.1.3",
"description": "Minecraft for Type 1 Diabetes",
"main": "index.js",
"scripts": {
"test": "echo \"No tests yet\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Magikcraft/mct1.git"
},
"keywords": [
"minecraft",
"magikcraft",
"sma",
"scriptcraft"
],
"author": "Magikcraft.io",
"contributors": [
"Tim Marwick <[email protected]> (https://triyuga.github.io/)",
"Jonn Dillon (https://github.com/Technosasquach)",
"Katie Morgan",
"Josh Wulf <[email protected]> (https://github.com/jwulf)"
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/Magikcraft/mct1/issues"
},
"homepage": "https://github.com/Magikcraft/mct1#readme",
"scriptcraft_load_dir": "autoload",
"devDependencies": {
"@types/typescript": "^2.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "1.16.4",
"tslint-config-prettier": "^1.18.0"
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"*.{ts,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@magikcraft/commando": "0.0.4",
"@magikcraft/core": "^0.1.27",
"@scriptcraft/types": "^1.1.16"
},
"config": {
"access": "public"
}
}