forked from deepstreamIO/deepstream.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.84 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
{
"name": "deepstream.io",
"version": "4.0.0-beta.2",
"description": "a scalable server for realtime webapps",
"main": "./dist/src/deepstream.io.js",
"bin": {
"deepstream": "./dist/bin/deepstream"
},
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run tsc && node ./dist/bin/deepstream",
"precommit": "npm run lint",
"tsc": "rm -rf dist && tsc && cp ./package.json ./dist/package.json && cp -r conf ./dist/conf && mv ./dist/bin/deepstream.js ./dist/bin/deepstream",
"license": "mkdir -p build && node scripts/license-aggregator > build/LICENSE && cat scripts/resources/missing-licenses.txt >> build/LICENSE",
"lint": "tslint bin/*.ts test/**/*.ts protocol/**/*.ts src/**/*.ts -t verbose",
"lint:fix": "tslint --fix bin/*.ts test/**/*.ts protocol/**/*.ts src/**/*.ts -t verbose",
"test": "npm run tsc && jasmine JASMINE_CONFIG_PATH=jasmine.json",
"test:coverage": "npm run tsc && istanbul cover jasmine-runner.js",
"test-http-server": "node test/test-helper/start-test-server.js",
"e2e": "npm run tsc && node ./node_modules/cucumber/bin/cucumber.js test-e2e --require ./test-e2e/steps --tags \"not @cluster\"",
"e2e:rpc": "npm run e2e -- --tags \"not @cluster and @rpcs\"",
"e2e:event": "npm run e2e -- --tags \"not @cluster and @events\"",
"e2e:record": "npm run e2e -- --tags \"not @cluster and @records\"",
"e2e:login": "npm run e2e -- --tags \"not @cluster and @login\"",
"e2e:presence": "npm run e2e -- --tags \"not @cluster and @presence\"",
"e2e:http": "npm run e2e -- --tags \"not @cluster and @http\""
},
"repository": {
"type": "git",
"url": "https://github.com/deepstreamIO/deepstream.io.git"
},
"dependencies": {
"adm-zip": "^0.4.7",
"ajv": "^5.3.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"commander": "^2.11.0",
"content-type": "^1.0.4",
"deepstream.io-service": "^0.1.5",
"glob": "^7.1.2",
"http-shutdown": "^1.2.0",
"http-status": "^1.0.1",
"js-yaml": "^3.10.0",
"mkdirp": "^0.5.1",
"needle": "^2.0.1",
"source-map-support": "^0.5.0",
"uws": "8.14.1"
},
"devDependencies": {
"@types/jasmine": "^2.6.1",
"@types/node": "^8.0.47",
"async": "^2.5.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cucumber": "https://github.com/deepstreamIO/cucumber-js.git",
"deepstream.io-client-js": "https://github.com/deepstreamIO/deepstream.io-client-js.git#v4",
"istanbul": "^0.4.5",
"jasmine": "^2.8.0",
"n0p3": "^1.0.2",
"nexe": "^1",
"proxyquire": "1.8.0",
"sinon": "^4.0.1",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"watch": "^1.0.2"
},
"author": "deepstreamHub GmbH",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io/issues"
},
"homepage": "http://deepstream.io"
}