-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "odoo-xmlrpc",
"version": "1.0.7",
"description": "Nodejs client to call Odoo RPC's through xmlrpc library.",
"author": {
"name": "Faisal Sami",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/faisalsami/odoo-xmlrpc"
},
"homepage": "https://github.com/faisalsami/odoo-xmlrpc",
"bugs": "https://github.com/faisalsami/odoo-xmlrpc/issues",
"readme": "https://github.com/faisalsami/odoo-xmlrpc/blob/master/README.md",
"directories": {
"lib": "./dist/"
},
"main": "./dist/index.js",
"engines": {
"node": ">=0.8",
"npm": ">=1.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.10.1",
"url": "*",
"xmlrpc": "^1.3.1"
},
"license": "Apache-2.0",
"scripts": {
"build": "babel src -d dist"
},
"keywords": [
"odoo",
"xmlrpc"
],
"bugs": {
"url": "https://github.com/faisalsami/odoo-xmlrpc/issues"
},
"homepage": "https://github.com/faisalsami/odoo-xmlrpc",
"_npmUser": {
"name": "faisalsami",
"email": "[email protected]"
},
"maintainers": [
{
"name": "faisalsami",
"email": "[email protected]"
}
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2"
}
}