-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 KB
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
{
"name": "minoss",
"title": "Mini Node Script Server",
"version": "0.1.11",
"description": "Mini Node Script Server - Simple API Server with auto-loading, abstraction and configuration handling for IoT automation.",
"main": "server.js",
"homepage": "https://github.com/dkern/minoss",
"bugs": "https://github.com/dkern/minoss/issues",
"author": {
"name": "Daniel 'Eisbehr' Kern",
"email": "jquery@eisbehr.de",
"url": "http://eisbehr.de/"
},
"repository": {
"type": "git",
"url": "git@github.com:dkern/minoss.git"
},
"keywords": [
"nodejs",
"server",
"raspberry",
"pi"
],
"license": "(MIT OR GPL-2.0)",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type": "GPL-2.0",
"url": "http://www.gnu.org/licenses/gpl-2.0.html"
}
],
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"js2xmlparser": "^3.0.0"
},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-jshint": "^2.1.0",
"jshint": "^2.9.6",
"jshint-stylish": "^2.2.1"
},
"scripts": {
"start": "node server.js"
}
}