-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "wia",
"version": "1.4.1",
"description": "Node.js SDK for Wia",
"main": "wia.js",
"keywords": [
"wia",
"iot",
"cloud",
"api"
],
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --timeout 10000 --exit",
"test-events": "nyc --reporter=html --reporter=text mocha test/events.js --timeout 10000 --exit",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/wiaio/wia-nodejs-sdk.git"
},
"contributors": [
"Conall Laverty <team@wia.io> (http://twitter.com/ConallLaverty)"
],
"author": "Conall Laverty",
"bugs": {
"url": "https://github.com/wiaio/wia-nodejs-sdk/issues"
},
"homepage": "https://github.com/wiaio/wia-nodejs-sdk",
"dependencies": {
"events": "^2.0.0",
"mqtt": "^2.17.0",
"request": "^2.85.0",
"util": "^0.10.3"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.2.1"
},
"directories": {
"test": "test"
},
"license": "MIT"
}