forked from SAP-archive/node-rfc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.14 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
{
"name": "node-rfc",
"description": "nodejs bindings for SAP NW RFC SDK",
"version": "1.2.0",
"homepage": "https://github.com/sap/node-rfc",
"author": {
"name": "Srdjan Boskovic",
"email": "[email protected]"
},
"engines": {
"node": ">=8.11.2",
"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 tslint typescript segfault-handler",
"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",
"prebuild": "prebuild --backend cmake-js -r napi --force --strip --verbose --tag-prefix",
"upload": "prebuild -r napi -u --verbose",
"wrapper": "tsc -p src/ts",
"examples": "tsc -p examples/ts",
"test": "jest test"
},
"binary": {
"napi_versions": [
3
],
"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.9.6",
"@types/bluebird": "^3.5.32",
"@types/node": "^13.13.9",
"async": "^3.2.0",
"cmake-js": "^6.1.0",
"decimal.js": "^10.2.0",
"jest": "^25.5.4",
"node-inspect": "^1.11.6",
"prebuild": "^10.0.0",
"prebuild-install": "^5.3.4",
"random-bytes": "^1.0.0",
"segfault-handler": "^1.3.0",
"tslint": "^6.1.2",
"typescript": "^3.9.3"
},
"dependencies": {
"bluebird": "^3.7.2",
"node-addon-api": "^2.0.0"
}
}