-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.78 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
{
"name": "ts-game-framework",
"version": "1.0.0",
"description": "A framework to build web games based on canvas rendering",
"main": "build/server.js",
"scripts": {
"test": "cd test && ts-mocha -r tsconfig-paths/register ./**/*.ts",
"start": "node dist/server.js",
"test:coverage": "nyc npm t",
"test:coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"lint": "node ./node_modules/tslint/bin/tslint src/**/*.ts"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"lcovonly",
"html"
]
},
"author": "Oliver Warrings <[email protected]>",
"license": "MIT",
"dependencies": {
"atob": "^2.0.3",
"express": "^4.15.3",
"file-api": "^0.10.4",
"file-loader": "^0.11.2",
"json-loader": "^0.5.4",
"object-sizeof": "^1.2.0",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"w3c-blob": "0.0.1"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/express": "^4.0.36",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.4",
"@types/sinon": "^2.3.2",
"@types/socket.io": "^1.4.29",
"@types/socket.io-client": "^1.4.29",
"awesome-typescript-loader": "^3.1.3",
"chai": "^4.0.2",
"circular-dependency-plugin": "^3.0.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-typescript": "^1.1.5",
"nyc": "^11.0.3",
"sinon": "^2.3.6",
"ts-mocha": "^1.0.3",
"tsconfig-paths": "^2.2.0",
"tslint": "^5.5.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.4.2",
"webpack": "^3.0.0"
},
"false": {}
}