forked from pimatic/pimatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.34 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
{
"name": "pimatic",
"description": "A home automation server and framework for the Raspberry PI running on node.js",
"author": "Oliver Schneider <[email protected]> (http://sweetpi.de)",
"main": "pimatic.js",
"files": [
"docs",
"lib",
"locales",
"test",
"pimatic.js",
"startup.coffee",
"Cuntfile.coffee",
"coffee-cache.js",
"config-schema.coffee",
"device-config-schema.coffee",
"config_default.json",
"README.md",
"plugins.md",
"LICENSE"
],
"version": "0.8.69",
"homepage": "http://github.com/pimatic/pimatic",
"repository": {
"type": "git",
"url": "git://github.com/pimatic/pimatic.git"
},
"bin": {
"pimatic.js": "./pimatic.js"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"bluebird": "~2.9.9",
"byline": "~4.2.1",
"cassert": "git+https://github.com/sweetpi/cassert.git#master",
"cjson": "~0.3.0",
"coffee-script": "1.8.0",
"colors": "~0.6.2",
"convict": "0.4.*",
"cross-spawn": "^0.2.3",
"daemon": "1.1.0",
"date-format-lite": "0.5.0",
"decl-api": "0.0.17",
"express": "3.4.7",
"fs.extra": "1.2.1",
"gethub": "^2.0.1",
"human-format": "^0.2.0",
"i18n": "0.4.*",
"jayschema": "~0.2.7",
"knex": "~0.7.3",
"lodash": "2.4.1",
"logrotate-stream": "^0.2.3",
"moment": "~2.6.0",
"relaxed-json": "~0.2.4",
"request-promise": "^0.4.0",
"semver": "2.2.1",
"socket.io": "~1.3.2",
"source-map-support": "^0.2.7",
"string": "~1.8.0",
"winston": "0.7.*"
},
"bundledDependencies": [
"coffee-script",
"express",
"convict",
"i18n",
"winston",
"cassert",
"lodash",
"bluebird",
"semver",
"fs.extra",
"daemon",
"date-format-lite",
"string",
"byline",
"knex",
"moment",
"colors",
"decl-api",
"jayschema",
"relaxed-json",
"cjson",
"source-map-support",
"human-format",
"gethub"
],
"devDependencies": {
"grunt-cli": "0.1.11",
"grunt": "0.4.2",
"grunt-coffeelint": "0.0.8",
"grunt-mocha-test": "0.8.1",
"blanket": "1.1.5",
"coffee-errors": "0.8.4",
"supertest": "0.8.2",
"grunt-bump": "0.0.13",
"proxyquire": "~0.5.2",
"mocha": "1.17.0",
"sinon": "1.7.3"
},
"engines": {
"node": ">0.8.x",
"npm": ">1.1.x"
}
}