-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "@dplusic/gamelift-nodejs-serversdk",
"version": "0.0.1",
"description": "Unofficial GameLift Server SDK for Node.js",
"main": "dist/lib/gamelift-nodejs-serversdk.js",
"typings": "dist/types/gamelift-nodejs-serversdk.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json 'src/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc && cpx src/Google/Sdk.js dist/lib/Google/ && cpx src/Google/Sdk.d.ts dist/types/Google/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dplusic/GameLift-Nodejs-ServerSDK.git"
},
"keywords": [
"gamelift"
],
"author": "Dongwoon Son",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dplusic/GameLift-Nodejs-ServerSDK/issues"
},
"homepage": "https://github.com/dplusic/GameLift-Nodejs-ServerSDK#readme",
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/debug": "0.0.30",
"@types/node": "^10.1.2",
"@types/p-defer": "^1.0.2",
"@types/p-timeout": "^1.2.0",
"@types/socket.io-client": "^1.4.32",
"cpx": "^1.5.0",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.3"
},
"dependencies": {
"debug": "^3.1.0",
"long": "^4.0.0",
"p-defer": "^1.0.0",
"p-timeout": "^2.0.1",
"protobufjs": "^6.8.6",
"sleep-promise": "^6.0.0",
"socket.io-client": "^2.1.1"
}
}