-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1016 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
{
"name": "informix-postgres-migrator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha",
"test:cov": "nyc --reporter=html --reporter=text npm test",
"lint": "eslint *.js src/*.js test/*.js config/*.js",
"lint:fix": "eslint --fix *.js src/*.js test/*.js config/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.3",
"config": "^2.0.1",
"fs-extra": "^7.0.1",
"informix-wrapper": "git+https://github.com/appirio-tech/informix-wrapper.git",
"pg": "^7.6.1",
"pg-native": "^3.0.0",
"underscore": "^1.9.1",
"winston": "^3.1.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"execa": "^1.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"should": "^13.2.3",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
},
"engines": {
"node": "8.x"
}
}