forked from SAP-archive/node-rfc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (47 loc) · 892 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"author": {
"name": "Srdjan Boskovic",
"email": "[email protected]"
},
"name": "node-rfc",
"description": "nodejs bindings for SAP NW RFC Library",
"version": "0.1.4",
"repository": {
"type": "git",
"url": "git://github.com/SAP/node-rfc.git"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"keywords": [
"sap",
"rfc",
"rfc sdk",
"node",
"nodejs"
],
"main": "./index.js",
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">= 0.10.x"
},
"dependencies": {},
"devDependencies": {
"mocha": ">=1.18",
"should": "^3.3.1",
"node-gyp": "^0.13.1"
},
"optionalDependencies": {},
"files": [
"index.js",
"LICENSE",
"CHANGES",
"build/win32_x64/rfc.node",
"build/linux_x64/rfc.node"
]
}