forked from oracle/node-oracledb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.16 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
{
"name": "oracledb",
"version": "1.9.0",
"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": [
"oracledb",
"dboracle",
"Node.js",
"SQL",
"PL/SQL",
"connection",
"connectivity",
"OCI",
"client",
"plugin",
"library",
"driver",
"add-on",
"extension",
"binding",
"interface",
"adapter",
"module",
"DB",
"official",
"Database",
"Oracle"
],
"repository": {
"type": "git",
"url": "git://github.com/oracle/node-oracledb.git"
},
"dependencies": {
"nan": "~2.2.0"
},
"devDependencies": {
"mocha": "~2.2.5",
"should": "~6.0.1",
"async": "~0.9.0"
},
"scripts": {
"test": "mocha -R spec --timeout 10000 test/*.js",
"testWindows": "mocha -R spec --timeout 0 test\\*.js"
},
"engines": {
"node": ">=0.10.28 <6"
},
"maintainers": [
{
"name": "Oracle Corp."
}
],
"bugs": {
"url": "https://github.com/oracle/node-oracledb/issues"
},
"main": "./index.js"
}