This repository has been archived by the owner on Jul 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
114 lines (114 loc) · 3.09 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "netbeast-cli",
"description": "Netbeast OS dashboard, IoT apps manager",
"version": "0.5.9",
"preferGlobal": "true",
"main": "electron.js",
"dependencies": {
"aedes": "^0.17.1",
"bluebird": "^3.2.2",
"body-parser": "^1.12.2",
"chalk": "^1.1.1",
"cli-spinner": "^0.2.1",
"commander": "^2.7.1",
"cookie-parser": "^1.4.1",
"dotenv": "^2.0.0",
"express": "^4.12.3",
"freeport": "^1.0.5",
"fs-extra": "^0.26.0",
"fstream": "^1.0.8",
"fstream-ignore": "^1.0.3",
"getmac": "^1.0.7",
"gift": "^0.6.1",
"http-proxy": "^1.13.2",
"inquirer": "^1.0.2",
"lodash": "^4.12.0",
"mixpanel": "^0.4.0",
"morgan": "^1.5.2",
"mqtt": "^1.6.3",
"multer": "^1.1.0",
"netbeast": "^1.0.5",
"serve-favicon": "^2.2.0",
"sqlite3": "^3.1.3",
"superagent": "^1.7.2",
"superagent-bluebird-promise": "^3.0.0",
"websocket-stream": "^3.1.0"
},
"bin": {
"beast": "bin/cli.js",
"netbeast": "bin/cli.js"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"chai": "^3.2.0",
"chart.js": ">= 1.1.1 & < 2.0",
"electron-prebuilt": "^0.37.2",
"envify": "^3.4.0",
"enzyme": "^2.3.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-bg": "^0.0.8",
"gulp-cssnano": "^2.1.0",
"gulp-istanbul": "^0.10.3",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.0.3",
"gulp-plumber": "^1.0.1",
"gulp-sass": "^2.0.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-util": "^3.0.4",
"gulp-wait": "^0.0.2",
"istanbul": "^0.4.0",
"jquery": "^3.0.0",
"livereload": "^0.4.1",
"mocha": "^2.3.3",
"pre-commit": "^1.1.3",
"react": "^0.14.0",
"react-avatar": "^0.7.2",
"react-bootstrap": "^0.29.4",
"react-chartjs": "^0.7.3",
"react-color": "^2.0.0",
"react-dom": "^0.14.0",
"react-dropzone": "^3.3.2",
"react-router": "^2.0.0-rc5",
"react-typist": "^0.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/netbeast/dashboard"
},
"keywords": [
"netbeast",
"beast",
"iot",
"node",
"dashboard",
"smart",
"router"
],
"scripts": {
"test": "./node_modules/.bin/gulp test",
"coverage": "./node_modules/.bin/gulp coverage",
"build": "./node_modules/.bin/gulp build",
"dev": "./node_modules/.bin/gulp",
"start": "node index.js",
"electron": "./node_modules/.bin/electron electron.js",
"clean": "rm -r ./test/coverage; rm .database.sqlite",
"prepublish": "npm run build",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"engines": {
"node": ">=0.12"
},
"author": "staff@netbeast",
"license": "AGPL-3.0"
}