This repository has been archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
111 lines (111 loc) · 3.26 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
{
"name": "homie-server",
"version": "0.4.9",
"description": "Server-part of Homie, an opinionated home automation system using MQTT",
"main": "index.js",
"scripts": {
"start": "babel-node ./bin/cli.js --uiPort 3000 --logLevel 4",
"test": "npm run test-standard && npm run test-deps && npm run test-tests",
"test-standard": "semistandard | snazzy",
"test-deps": "depcheck --ignore-dirs=dist,public --ignores=babel*,semantic-ui",
"test-tests": "NODE_ENV=test babel-node ./node_modules/.bin/tape ./test/**/*.js | tap-spec",
"wintest": "npm run test-standard && npm run test-deps && npm run wintest-tests",
"wintest-tests": "set NODE_ENV=test && babel-node ./node_modules/tape/bin/tape ./test/**/*.js | tap-spec",
"coverage": "NODE_ENV=test babel-node ./node_modules/.bin/isparta cover --report lcov ./test/*.js",
"coveralls": "npm run coverage --silent && coveralls < ./coverage/lcov.info",
"dev": "gulp dev",
"dist": "gulp dist"
},
"bin": {
"homie": "./bin/cli.js"
},
"preferGlobal": true,
"author": {
"name": "Marvin Roger",
"email": "[email protected]",
"url": "http://marvinroger.fr"
},
"keywords": [
"home",
"automation",
"iot",
"mqtt",
"dashboard"
],
"repository": {
"type": "git",
"url": "https://github.com/marvinroger/homie-server.git"
},
"bugs": "https://github.com/marvinroger/homie-server/issues",
"homepage": "https://github.com/marvinroger/homie-server",
"engines": {
"node": ">=0.12.0"
},
"license": "GPL-2.0",
"dependencies": {
"babel-runtime": "^6.3.19",
"bluebird": "^3.0.5",
"chokidar": "^1.3.0",
"clor": "^2.0.0",
"express": "^4.13.3",
"immutable": "^3.7.6",
"internal-ip": "^1.1.0",
"is-my-json-valid": "^2.13.0",
"md5": "^2.0.0",
"mqtt": "^1.7.2",
"nedb": "^1.5.0",
"pauseable": "^0.1.6",
"socket.io": "^1.3.7",
"validator": "^5.0.0",
"yamljs": "^0.2.4",
"yargs": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-3": "^6.1.18",
"babel-register": "^6.5.2",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"classnames": "^2.2.1",
"coveralls": "^2.11.6",
"del": "^2.2.0",
"depcheck": "^0.6.0",
"envify": "^3.4.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-imagemin": "^2.4.0",
"gulp-json-editor": "^2.2.1",
"gulp-newer": "^1.1.0",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.1",
"gulp-watch": "^4.3.5",
"isparta": "^4.0.0",
"merge-stream": "^1.0.0",
"node-notifier": "^4.3.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.0.4",
"redux": "^3.3.1",
"run-sequence": "^1.1.5",
"semantic-ui": "^2.1.7",
"semistandard": "^7.0.4",
"snazzy": "^3.0.0",
"socket.io-client": "^1.3.7",
"tap-spec": "^4.1.1",
"tape": "^4.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"/app/vendor/"
]
}
}