-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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": "socket.io-monitor-cli",
"version": "2.1.0",
"description": "CLI client for socket.io-monitor",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel -d dist src",
"watch": "babel -w -d dist src"
},
"bin": {
"socket.io-monitor": "bin/cli.js"
},
"babel": {
"presets": [
"es2015",
"react",
"flow"
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties"
]
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/byteclubfr/socket.io-monitor-cli.git"
},
"author": "Nicolas Chambrier <[email protected]> (http://naholyr.fr/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/byteclubfr/socket.io-monitor-cli/issues"
},
"homepage": "https://github.com/byteclubfr/socket.io-monitor-cli#readme",
"dependencies": {
"blessed": "^0.1.81",
"inquirer": "^3.2.0",
"jsome": "^2.3.26",
"react": "^0.14.8",
"react-blessed": "^0.1.8",
"reselect": "^3.0.0",
"socket.io-monitor": "^2.0.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1"
}
}