-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.15 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
{
"name": "cloudbrain-websocket-client",
"description": "A client for connecting and subscribing to the Cloudbrain WebSocket Server",
"version": "1.5.0",
"maintainers": [
{
"name": "Marion Le Borgne",
"email": "[email protected]"
},
{
"name": "William Wnekowicz",
"email": "[email protected]"
}
],
"homepage": "https://github.com/cloudbrain/cloudbrain-websocket-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudbrain/cloudbrain-websocket-client.git"
},
"bugs": {
"url": "https://github.com/cloudbrain/cloudbrain-websocket-client/issues"
},
"dependencies": {
"react": "^15.6.1",
"sockjs-client": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.6.0",
"babel-istanbul-loader": "0.0.1",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.6",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"loader-utils": "^0.2.12",
"rimraf": "^2.5.0",
"webpack": "^1.12.11"
},
"optionalDependencies": {},
"directories": {},
"keywords": [
"cloudbrain",
"websocket"
],
"license": "AGPL-3.0",
"main": "dist/cloudbrain-websocket-client.js",
"scripts": {
"build": "npm run clean && npm run build:dev && npm run build:prd",
"build:dev": "webpack src/cloudbrain-websocket-client.js dist/cloudbrain-websocket-client.js --config tools/webpack.config.dev.js",
"build:prd": "webpack src/cloudbrain-websocket-client.js dist/cloudbrain-websocket-client.min.js --config tools/webpack.config.prd.js",
"clean": "rimraf dist build",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "karma start --single-run --no-auto-watch karma.config.js"
}
}