forked from SAP-archive/node-rfc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-rfc",
"description": "nodejs bindings for SAP NW RFC SDK",
"version": "2.3.1",
"homepage": "https://github.com/sap/node-rfc",
"author": {
"name": "Srdjan Boskovic",
"email": "srdjan.boskovic@sap.com"
},
"engines": {
"node": "~10 >=10.20 || >=12.17",
"npm": "^6.11.3"
},
"cpu": [
"!arm"
],
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"deps": "npm install --save bluebird node-addon-api",
"devdeps": "npm install --save-dev @babel/core typings @types/node @types/bluebird async cmake-js decimal.js jest prebuild prebuild-install random-bytes eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin typescript",
"prepublishOnly": "npm ls --depth=0",
"preinstall": "npm install cmake-js prebuild-install prebuild node-addon-api",
"install": "prebuild-install --tag-prefix -r napi || cmake-js rebuild",
"addon": "prebuild --backend cmake-js -r napi --force --strip --verbose",
"ts": "tsc -p src/ts",
"upload": "prebuild -r napi -u --verbose",
"examples": "tsc -p examples/ts",
"test": "reuse lint && jest test"
},
"binary": {
"napi_versions": [
7
],
"module_name": "sapnwrfc",
"module_path": "./lib/binding/",
"host": "https://github.com/sap/node-rfc/releases/download/",
"remote_path": "v{version}"
},
"license": "Apache-2.0",
"keywords": [
"sap",
"rfc",
"rfc sdk",
"sapnwrfc",
"sapnw",
"node",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sap/node-rfc.git"
},
"files": [
"lib",
"src",
"CMakeLists.txt"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"devDependencies": {
"@babel/core": "^7.12.3",
"@types/bluebird": "^3.5.33",
"@types/node": "^14.14.8",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"async": "^3.2.0",
"cmake-js": "^6.1.0",
"decimal.js": "^10.2.0",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"prebuild": "^10.0.1",
"prebuild-install": "^5.3.6",
"random-bytes": "^1.0.0",
"typescript": "^3.9.7",
"typings": "^2.1.1"
},
"dependencies": {
"bluebird": "^3.7.2",
"node-addon-api": "^3.0.2"
}
}