forked from faisalsami/odoo-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "async-odoo-xmlrpc",
"version": "2.0.0",
"description": "Nodejs client to call Odoo RPC's through xmlrpc library.",
"author": {
"name": "NguyenVanTien2009",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nguyenvantien2009/async-odoo-xmlrpc.git"
},
"homepage": "https://github.com/nguyenvantien2009/async-odoo-xmlrpc",
"bugs": "https://github.com/nguyenvantien2009/async-odoo-xmlrpc/issues",
"readme": "https://github.com/nguyenvantien2009/async-odoo-xmlrpc/blob/master/README.md",
"directories": {
"lib": "./src/"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=6.17.1",
"npm": ">=5.6.0"
},
"dependencies": {
"lodash": "^4.17.20",
"url": "*",
"xmlrpc": "^1.3.1"
},
"devDependencies": {
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"start": "tsc && node lib/index.js"
},
"keywords": [
"odoo",
"xmlrpc",
"async/await"
],
"_npmUser": {
"name": "tien.nguyen",
"email": "[email protected]"
},
"maintainers": [
{
"name": "NguyenVanTien2009",
"email": "[email protected]"
}
]
}