-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
executable file
·84 lines (84 loc) · 2.26 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",
"version": "3.3.1",
"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": "srdjan.boskovic@sap.com"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"doc": "doc",
"test": "test"
},
"files": [
"binding.gyp",
"tsconfig.json",
"src",
"lib",
"prebuilds"
],
"scripts": {
"install": "node-gyp-build",
"jest": "jest test --testPathIgnorePatterns throughput --testTimeout 60000",
"lint": "npm run lintts && npm run lintcpp && npm audit --omit=dev && reuse lint",
"lintcpp": "clang-tidy src/cpp/*.cc -- -I/usr/local/sap/nwrfcsdk/include -Inode_modules/node-addon-api -I$NVM_BIN/../include/node",
"lintts": "eslint src/ts test --ext ts",
"test": "jest test --testPathIgnorePatterns throughput --testTimeout 60000",
"cpp": "prebuildify --napi -t 18.18.2 -t electron@25.2.0 --force --strip --verbose",
"dev": "prebuildify --napi -t 18.18.2 --force --strip --verbose",
"ts": "tsc",
"build": "npm run ts && npm run cpp",
"rebuild": "npm install --build-from-source"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"napi_version": 8
},
"dependencies": {
"bluebird": "^3.7.2",
"decimal.js": "^10.4.3",
"node-addon-api": "^6.1.0",
"node-gyp-build": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@tsconfig/node16": "^1.0.3",
"@types/bluebird": "^3.5.38",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"async": "^3.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"node-gyp": "^9.4.0",
"prebuildify": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2"
},
"engines": {
"node": "^18 || >= 20"
},
"gypfile": true
}