forked from ozmap/node-red-contrib-ozmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.17 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
63
64
65
66
{
"name": "@ozmap/node-red-contrib-ozmap",
"version": "1.0.0",
"description": "OZMap wrapper to ozmap-api. Helper to use OZMap API's",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md,html}\"",
"start": "node node_modules/node-red/red.js"
},
"repository": {
"type": "git",
"url": "[email protected]:ozmap/node-red-contrib-ozmap.git"
},
"keywords": [
"ozmap",
"api",
"ozmap-api",
"devoz",
"map",
"fiber",
"network",
"node-red"
],
"node-red": {
"nodes": {
"project": "./nodes/project/project.js",
"project-clone": "./nodes/project/clone.js",
"box": "./nodes/box/box.js",
"user": "./nodes/user/user.js",
"cable": "./nodes/cable/cable.js",
"client": "./nodes/client/client.js",
"property": "./nodes/property/property.js",
"createUser": "./nodes/user/createUser.js",
"updatePassword": "./nodes/user/updateUserPassword.js",
"updateClient": "./nodes/client/updateClient.js",
"networkConnector": "./nodes/network-connector/network-connector.js",
"networkConnectable": "./nodes/network-connectable/network-connectable.js",
"getOZmapClientByONUCode": "./nodes/client/getOZmapClientByONUCode.js",
"getPropertyByClientId": "./nodes/property/getPropertyByClientId.js",
"updateProperty": "./nodes/property/updateProperty.js",
"getAllPropertiesWithClients": "./nodes/property/getAllPropertiesWithClients.js",
"connection": "./nodes/ozmap-connection/ozmap-connection.js",
"region": "./nodes/region/region.js"
}
},
"author": "Jose Raupp da Rosa Junior <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ozmap/node-red-contrib-ozmap/issues"
},
"homepage": "https://github.com/ozmap/node-red-contrib-ozmap/wiki",
"dependencies": {
"@ozmap/ozmap-sdk": "^0.2.1",
"node-red": "^2.1.3"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1"
}
}