forked from aluisiora/node-routeros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "node-routeros",
"version": "1.6.9",
"description": "Mikrotik Routerboard RouterOS API for NodeJS",
"main": "./dist/index",
"types": "./dist/index",
"scripts": {
"prepublishOnly": "rimraf ./dist && tsc",
"test": "rimraf ./dist && tsc && ENV=testing mocha",
"tsc:build": "rimraf ./dist && tsc",
"tsc:build:watch": "rimraf ./dist && tsc -w"
},
"repository": {
"type": "git",
"url": "[email protected]:aluisiora/node-routeros.git"
},
"keywords": [
"routeros",
"routerboard",
"mikrotik",
"typescript",
"node"
],
"author": "Aluisio Rodrigues Amaral",
"license": "MIT",
"devDependencies": {
"@types/debug": "0.0.30",
"@types/i18next": "^8.4.3",
"@types/iconv-lite": "0.0.1",
"@types/node": "^12.12.35",
"chai": "^4.1.2",
"dotenv": "^8.2.0",
"mocha": "^4.1.0",
"prettier": "^2.0.4",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.16",
"typescript": "^3.8.3"
},
"dependencies": {
"debug": "*",
"iconv-lite": "*"
}
}