forked from walterhiggins/ScriptCraft
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "scriptcraft-modular-arch",
"version": "0.3.1",
"description": "Scriptcraft Modular Architecture",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"No tests\" && exit 0",
"dev": "cd SMA && tsc -w",
"build": "cd SMA && tsc ",
"build:dist": "./build-dist.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Magikcraft/MagikCraft.git"
},
"keywords": [
"minecraft",
"scriptcraft",
"javascript"
],
"author": "Josh Wulf <josh@magikcraft.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Magikcraft/MagikCraft/issues"
},
"homepage": "https://github.com/Magikcraft/MagikCraft#readme",
"husky": {
"hooks": {
"pre-commit": "cd SMA && tsc && git add . && lint-staged"
}
},
"lint-staged": {
"*.{ts,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"typescript": "^3.7.3"
},
"private": true,
"dependencies": {
"@types/jasmine": "^3.3.12"
}
}