-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "cettia-client",
"version": "1.1.0",
"homepage": "https://cettia.io/",
"description": "Cettia client for browser and Node",
"main": "cettia.js",
"scripts": {
"test": "grunt test",
"build": "npm run base; npm run bundler; npm run browser; npm run browserMin",
"base": "babel src/cettia.es6 --out-file cettia.js",
"bundler": "NODE_ENV=browser babel src/cettia.es6 --out-file cettia-bundler.js",
"browser": "webpack cettia-bundler.js cettia-browser.js --output-library cettia",
"browserMin": "webpack cettia-bundler.js cettia-browser.min.js --output-library cettia --optimize-minimize --optimize-occurrence-order"
},
"repository": {
"type": "git",
"url": "https://github.com/cettia/cettia-javascript-client.git"
},
"keywords": [
"realtime",
"websocket",
"http",
"comet",
"streaming",
"longpolling"
],
"author": {
"name": "Donghwan Kim",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cettia/cettia-javascript-client/issues"
},
"dependencies": {
"eventsource": "1.0.7",
"jsdom": "9.12.0",
"msgpack-lite": "0.1.26",
"traverse": "0.6.6",
"ws": "5.2.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-dead-code-elimination": "2.2.2",
"babel-plugin-transform-node-env-inline": "0.4.3",
"babel-preset-es2015-without-strict": "0.0.4",
"cettia-protocol": "1.0.0",
"chai": "4.2.0",
"grunt": "1.0.4",
"minimist": "1.2.5",
"mocha": "5.2.0",
"webpack": "1.15.0"
}
}