-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"name": "cloud-connect-web-api-node",
"version": "0.0.2",
"description": "NodeJS API wrapper for Mobile Devices Cloud Connect",
"author": "Francesco Falanga <falanga.fra@gmail.com>",
"homepage": "https://github.com/Fleetmatica/cloud-connect-web-api-node",
"license": "MIT",
"contributors": [
{
"name": "Francesco Falanga",
"email": "falanga.fra@gmail.com"
}
],
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test mocha ./test/*.js",
"test-base-request": "NODE_ENV=test mocha ./test/base-request.js",
"test-http-manager": "NODE_ENV=test mocha ./test/http-manager.js",
"test-webapi-request": "NODE_ENV=test mocha ./test/webapi-request.js",
"test-cloud-connect-web-api": "NODE_ENV=test mocha ./test/*cloud-connect-web-api.js",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"repository": {
"type": "git",
"url": "https://github.com/Fleetmatica/cloud-connect-web-api-node.git"
},
"dependencies": {
"restler": "*",
"promise": "*"
},
"devDependencies": {
"istanbul": "*",
"mocha": "*",
"mockery": "*",
"should": "*",
"sinon": "*"
},
"keywords": [
"cloud connect",
"car",
"api",
"wrapper",
"client",
"web api"
]
}