-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.73 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "minecraft-manager",
"version": "0.2.1",
"description": "a minecraft server manager with web gui just for vanilla minecraft server",
"main": "dist/index.js",
"bin": "./bin/minecraft-manager.js",
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && babel src --out-dir dist -s",
"start": "babel-node ./bin/minecraft-manager-dev.js",
"test": "jest",
"precommit": "lint-staged",
"clean": "rm -rf dist",
"build-api": "babel-node build/build-api.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XGHeaven/minecraft-manager.git"
},
"author": "XGHeaven",
"license": "ISC",
"bugs": {
"url": "https://github.com/XGHeaven/minecraft-manager/issues"
},
"homepage": "https://github.com/XGHeaven/minecraft-manager#readme",
"dependencies": {
"archiver": "^1.3.0",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"boom": "^4.3.0",
"bunyan": "^1.8.9",
"bunyan-debug-stream": "^1.0.8",
"bunyan-format": "^0.2.1",
"byline": "^5.0.0",
"debug": "^2.6.3",
"decompress": "^4.0.0",
"is-there": "^4.4.1",
"joi": "^10.3.1",
"kcors": "^2.2.1",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^2.0.1",
"koa-router": "^7.0.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"prismarine-nbt": "^1.1.0",
"readdir": "^0.0.13",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"rimraf": "^2.6.1",
"rx-node": "^1.0.2",
"rxjs": "^5.4.0",
"yargs": "^7.0.2",
"yn": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-flow": "^6.23.0",
"delay": "^2.0.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"joi-to-json-schema": "^3.0.0",
"lint-staged": "^3.4.0",
"prettier": "^1.4.4"
},
"babel": {
"presets": [
"flow",
[
"env",
{
"targets": {
"node": 6.9
},
"useBuiltIns": true,
"debug": true
}
]
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"transform-function-bind",
[
"transform-runtime",
{
"polyfill": false
}
]
]
},
"files": [
"dist",
"bin"
],
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma all --print-width 120 --write --no-semi",
"git add"
]
}
}