forked from nukedzn/node-wialon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1005 Bytes
/
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
{
"name": "wialon",
"version": "2.0.2",
"description": "NodeJS wrapper for Wialon Remote API",
"main": "index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"iojs": ">=2.0",
"node": ">=0.12"
},
"scripts": {
"coverage": "istanbul cover _mocha -- --reporter spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- --reporter spec && cat ./coverage/lcov.info | coveralls",
"docs": "jsdoc -c jsdoc-conf.json ./README.md",
"lint": "jshint index.js lib test",
"test": "mocha"
},
"author": "Uditha Atukorala <[email protected]>",
"license": "ISC",
"repository": "nukedzn/node-wialon",
"keywords": [
"wialon",
"api"
],
"files": [
"index.js",
"lib"
],
"dependencies": {
"debug": "^2.2.0",
"extend": "^3.0.0",
"request": "^2.67.0"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.2",
"istanbul": "^0.4.1",
"jshint": "^2.8.0",
"mocha": "^2.3.4",
"nock": "^3.4.0"
}
}