-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "node-meraki-dashboard",
"version": "3.0.0",
"description": "A modern node.js client library for using the Meraki Dashboard API.",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"lint-fix": "eslint src/**/*.js --fix",
"test": "mocha test/**/*.js",
"test-with-coverage": "nyc mocha test/**/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"api-coverage": "node ./tools/api-coverage.js"
},
"keywords": [
"cisco",
"meraki",
"cisco-meraki",
"dashboard",
"client",
"library",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tejashah88/node-meraki-dashboard.git"
},
"author": "tejashah88",
"license": "MIT",
"bugs": {
"url": "https://github.com/tejashah88/node-meraki-dashboard/issues"
},
"homepage": "https://github.com/tejashah88/node-meraki-dashboard#readme",
"dependencies": {
"axios": "^0.19.0",
"json-bigint": "^0.3.0",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"chalk": "^2.4.2",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"json-from-text": "^1.1.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"object.values": "^1.1.0",
"string.prototype.matchall": "^3.0.1",
"table": "^5.4.5",
"unique-objects": "^1.0.3"
}
}