-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.53 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
85
86
87
88
89
90
91
{
"name": "node-rfc",
"version": "2.7.0",
"description": "nodejs bindings for SAP NW RFC SDK",
"keywords": [
"sap",
"rfc",
"rfc sdk",
"sapnwrfc",
"sapnw",
"node",
"nodejs"
],
"homepage": "https://github.com/sap/node-rfc",
"repository": {
"type": "git",
"url": "git+https://github.com/sap/node-rfc.git"
},
"license": "Apache-2.0",
"author": {
"name": "Srdjan Boskovic",
"email": "[email protected]"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"doc": "doc",
"test": "test"
},
"files": [
"lib",
"src",
"CMakeLists.txt"
],
"binary": {
"module_name": "sapnwrfc",
"module_path": "./lib/binding/",
"remote_path": "v{version}",
"host": "https://github.com/sap/node-rfc/releases/download/",
"napi_versions": [
5
]
},
"scripts": {
"addon": "prebuild --backend cmake-js -r napi --force --strip --verbose",
"devDpd": "npm install --save-dev cmake-js commitizen cz-conventional-changelog ts-node typescript async decimal.js eslint jest prebuild random-bytes @tsconfig/node16 @types/node @types/bluebird @babel/core @typescript-eslint/eslint-plugin @typescript-eslint/parser",
"dpd": "npm install --save bluebird node-addon-api prebuild-install",
"preinstall": "npm install cmake-js prebuild-install prebuild node-addon-api",
"install": "prebuild-install -r napi || cmake-js rebuild",
"jest": "jest --testPathIgnorePatterns throughput --testTimeout 30000",
"prepublishOnly": "npm ls --depth=0",
"test": "reuse lint && jest --testPathIgnorePatterns throughput --testTimeout 30000",
"ts": "tsc -p src/ts",
"upload": "prebuild -r napi -u --verbose"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"bluebird": "^3.7.2",
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@tsconfig/node16": "^1.0.3",
"@types/bluebird": "^3.5.36",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"async": "^3.2.4",
"cmake-js": "^6.3.2",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"decimal.js": "^10.3.1",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"prebuild": "^11.0.4",
"random-bytes": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"cpu": [
"!arm"
]
}