forked from deepstreamIO/urp-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "urp",
"version": "1.0.0",
"description": "The binary realtime protocol used by deepstream.io",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"tsc": "rm -rf dist && tsc",
"lint": "tslint test/*.ts test/**/*.ts src/*.ts src/**/*.ts -t verbose",
"lint:fix": "npm run lint -- --fix",
"test": "npm run tsc && mocha dist/test --recursive --reporter dot --require source-map-support/register",
"test:coverage": "npm run tsc && istanbul cover _mocha dist/test -- --recursive --reporter dot --require source-map-support/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepstreamIO/urp-js.git"
},
"keywords": [
"deepstream.io",
"protocol",
"binary"
],
"devDependencies": {
"@types/chai": "^4.0.6",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"@types/sinon": "^4.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"sinon": "^4.1.2",
"source-map-support": "^0.5.0",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"author": "deepstreamHub GmbH",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/deepstreamIO/urp-js/issues"
},
"homepage": "https://github.com/deepstreamIO/urp-js#readme"
}