-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 837 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
{
"name": "oracle-migrate",
"version": "0.0.12",
"description": "Migration framework for node and Oracle DB",
"main": "index.js",
"bin": {
"oracle-migrate": "./bin/migrate"
},
"scripts": {
"start": "node bin/migrate",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/olehch/oracle-migrate.git"
},
"keywords": [
"database",
"oracle",
"migrate",
"migrations"
],
"engines": {
"node": ">= 0.6.x"
},
"homepage": "https://github.com/olehch/oracle-migrate",
"author": "Oleh Chaplya",
"license": "MIT",
"dependencies": {
"oracledb": "^1.11.0",
"simple-oracledb": "^1.1.21",
"yargs": "^6.3.0"
},
"devDependencies": {
"@eleks/eslint-config-eleks": "^0.1.1",
"eslint": "^2.1.0"
}
}