-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "@qhun-engine/server",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha -r ts-node/register \"test/**/*.spec*.ts\"",
"test:coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha -r ts-node/register \"test/**/*.spec*.ts\"",
"build": "npm-run-all build:typescript build:declaration",
"build:typescript": "./node_modules/.bin/tsc",
"build:declaration": "./node_modules/.bin/tsc -p ./tsconfig.declaration.json",
"lint": "./node_modules/.bin/tslint --project .",
"start": "ts-node src/index.ts",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/qhun-engine/server"
},
"keywords": [
"game-engine"
],
"author": "wartoshika <dev@qhun.de>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"npm-run-all": "^4.1.3",
"nyc": "^13.1.0",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@qhun-engine/base": "git+https://github.com/qhun-engine/base.git",
"express": "^4.16.4"
}
}