forked from aluisiora/routeros-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "@bitfocus/routeros-client",
"version": "1.1.1",
"description": "Abstraction layer over the node-routeros API",
"main": "./dist/index",
"types": "./dist/index",
"directories": {
"test": "test"
},
"scripts": {
"prepublishOnly": "rimraf ./dist && tsc",
"test": "rimraf ./dist && tsc && ENV=testing mocha",
"tsc:build": "rimraf ./dist && tsc",
"tsc:build:watch": "rimraf ./dist && tsc -w"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "[email protected]:bitfocus/routeros-client.git"
},
"keywords": [
"routeros",
"routerboard",
"mikrotik",
"routerboard-api",
"mikrotik-api",
"node-routeros",
"javascript",
"typescript",
"node",
"nodejs",
"api",
"ros"
],
"author": "Aluisio Rodrigues Amaral",
"license": "MIT",
"bugs": {
"url": "https://github.com/aluisiora/routeros-client/issues"
},
"homepage": "https://github.com/aluisiora/routeros-client#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/debug": "0.0.30",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.102",
"chai": "^4.1.2",
"dotenv": "^8.2.0",
"mocha": "^4.1.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.3",
"ts-node": "^3.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"debug": "3.x",
"lodash": "4.x",
"node-routeros": "1.x"
}
}