-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 936 Bytes
/
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
{
"name": "odoots",
"version": "0.1.2",
"private": false,
"engines": {
"node": ">=8.3.0"
},
"description": "TypeScript odoo API client",
"main": "lib/odoots.js",
"types": "lib/odoots.d.ts",
"scripts": {
"build": "tsc",
"prepare": "rm lib/* && tsc"
},
"files": [
"lib/"
],
"keywords": [
"odoo",
"api",
"client",
"json-rpc",
"typescript"
],
"author": "Leonardo \"LeartS\" Donelli",
"license": "MIT",
"homepage": "https://github.com/LeartS/odoots",
"repository": {
"type": "git",
"url": "https://github.com/LeartS/odoots.git"
},
"bugs": {
"url": "https://github.com/LeartS/odoots/issues"
},
"dependencies": {
"debug": "^4.1.1",
"jsonrpc-lite": "^2.0.7"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/node-fetch": "^2.3.3",
"typescript": "^3.4.5"
},
"optionalDependencies": {
"node-fetch": "^2.5.0"
}
}