-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 789 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 789 Bytes
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
{
"name": "instantclient",
"version": "1.0.2",
"description": "A Node.js command line tool for downloading and installing Oracle Instant Client Packages (Basic and SDK).",
"main": "instantclient.js",
"keywords": [
"Oracle",
"oracledb",
"InstantClient",
"Instant",
"Client",
"Node.js",
"plugin",
"tool",
"Database",
"SQL"
],
"dependencies": {
"cheerio": "^0.20.0",
"decompress": "^3.0.0",
"request": "^2.69.0",
"progress": "^1.1.8"
},
"devDependencies": {},
"bin": {
"instantclient": "instantclient.js"
},
"scripts": {
"install": "cd ../.. && instantclient && npm uninstall instantclient",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bill Christo",
"license": "MIT"
}