forked from bchr02/node-oracledb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.57 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
{
"name": "oracledb",
"version": "1.12.2",
"description": "Oracle Database driver by Oracle Corp.",
"license": "Apache-2.0",
"homepage": "http://www.oracle.com/technetwork/database/database-technologies/scripting-languages/node_js/",
"keywords": [
"Oracle",
"Database",
"official",
"DB",
"SQL",
"JSON",
"PL/SQL",
"OCI",
"API",
"client",
"library",
"driver",
"add-on",
"extension",
"binding",
"interface",
"adapter",
"module"
],
"repository": {
"type": "git",
"url": "git://github.com/oracle/node-oracledb.git"
},
"dependencies": {
"nan": "^2.4.0",
"node-pre-gyp": "0.6.x"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"mocha": "^2.4.5",
"should": "^8.3.1",
"async": "^1.5.0"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha --opts test/opts/mocha.opts",
"posttest": "node test/opts/versions.js",
"testwindows": "mocha --opts test\\opts\\mocha.opts && npm run posttest"
},
"binary": {
"module_name": "oracledb",
"module_path": "./build/Release",
"host": "https://raw.githubusercontent.com/cyrill-halter-ergon/node-oracledb/prebuild_support/bin",
"remote_path": "",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}-{toolset}.tar.gz"
},
"engines": {
"node": ">=0.10.28"
},
"maintainers": [
{
"name": "Oracle Corp."
}
],
"bugs": {
"url": "https://github.com/oracle/node-oracledb/issues"
},
"main": "./index.js"
}