forked from deepstreamIO/deepstream.io-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.3 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.3 KB
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
77
78
79
80
81
{
"name": "deepstream.io-client-js",
"version": "4.0.0-beta.1",
"description": "the javascript client for deepstream.io",
"keywords": [
"deepstream",
"javascript",
"realtime",
"client"
],
"main": "dist/src/deepstream.js",
"types": "dist/src/client.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"tsc": "rm -rf dist && tsc",
"precommit": "npm run tsc && npm run build && git add dist/",
"build": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"rebuild": "rimraf dist && webpack",
"clean": "rimraf dist",
"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": "https://github.com/deepstreamIO/deepstream.io-client-js.git"
},
"optionalDependencies": {
"utf-8-validate": "^3.0.4",
"bufferutil": "^3.0.3"
},
"dependencies": {
"component-emitter2": "^1.3.5",
"husky": "^0.14.3",
"node-localstorage": "^1.3.0",
"source-map-support": "^0.5.0",
"ws": "^3.3.2"
},
"browser": {
"net": false,
"ws": false
},
"devDependencies": {
"@types/bluebird": "^3.5.18",
"@types/chai": "^4.0.6",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"@types/sinon": "^4.0.0",
"@types/ws": "^3.2.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"rimraf": "^2.6.2",
"sinon": "^4.1.2",
"source-map-support": "^0.5.0",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack": "^3.9.1"
},
"author": "deepstreamHub GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io-client-js/issues"
},
"homepage": "http://deepstream.io",
"eslintConfig": {
"extends": "deepstream"
}
}