-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 796 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 796 Bytes
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
{
"name": "telldus-queue",
"version": "0.9.1",
"description": "Wrapper for node-telldus handling command repetitions and debouncing.",
"main": "telldus-queue.js",
"dependencies": {
"telldus": "^1.1.2"
},
"devDependencies": {
"docco": "^0.7.0",
"eslint": "^3.19.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"sinon-test": "^1.0.1"
},
"scripts": {
"test": "TESTING=1 mocha -R spec",
"doc": "docco telldus-queue.js",
"lint": "eslint telldus-queue.js test/*",
"cov": "TESTING=1 istanbul cover --report html node_modules/mocha/bin/_mocha -- -R spec"
},
"author": "Kriss Andsten <kriss@raljant.se>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kandsten/telldus-queue"
}
}