This repository has been archived by the owner on Sep 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "@mmontes11/iot-client",
"version": "1.3.7",
"description": "ES6 client library for consuming IoT server REST API",
"license": "MIT",
"private": false,
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"main": "dist/index.js",
"scripts": {
"install:submodules": "git submodule foreach npm install",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint:fix",
"test": "cross-env NODE_ENV=test nyc mocha --timeout 10000 test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf dist/*",
"build": "babel -d dist/ src/"
},
"repository": {
"type": "git",
"url": "https://github.com/mmontes11/iot-client"
},
"keywords": [
"js",
"javacript",
"es6",
"babel",
"nodejs",
"npm",
"mocha",
"chai",
"istanbul",
"iot-client",
"iot",
"internet-of-things",
"iot-client"
],
"author": "Martín Montes <[email protected]>",
"bugs": {
"url": "https://github.com/mmontes11/iot-client/issues"
},
"homepage": "https://github.com/mmontes11/iot-client#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"http-status": "^1.0.1",
"node-persist": "^3.0.1",
"restler": "^3.4.0",
"underscore": "^1.9.0",
"winston": "^3.0.0",
"winston-transport": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.4",
"eslint-config-mmontes11-node": "^1.0.5",
"iot-server": "file:./test/lib/iot-server",
"mocha": "^3.5.0",
"nyc": "^11.7.1"
}
}