-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "routeros-node",
"version": "0.1.0",
"description": "Routeros API for Node.js",
"license": "MIT",
"main": "./dist/index",
"types": "./dist/index",
"files": [
"./dist"
],
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/example/index.ts",
"test": "jest",
"test:watch": "jest --watch --verbose ",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "rimraf ./dist && tsc"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git@github.com:renomureza/routeros-node.git"
},
"keywords": [
"outeros",
"mikrotik-hotspot",
"routeros-api",
"mikrotik-routeros-api",
"mikrotik-api",
"mikrotik-routeros-script",
"routeros-node",
"routeros-wrapper",
"routeros-scripts",
"mikrotik",
"routeros-client"
]
}