-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1021 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
40
41
42
43
{
"name": "couch2pg",
"version": "0.7.1",
"bin": {
"couch2pg": "./cli.js"
},
"scripts": {
"test": "npm run lint && npm run unit-test && npm run int-test",
"lint": "eslint *.js lib tests",
"unit-test": "mocha tests/unit",
"int-test": "mocha tests/int"
},
"main": "index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/medic/couch2pg.git"
},
"dependencies": {
"commander": "^2.9.0",
"loglevel": "^1.4.1",
"loglevel-message-prefix": "^2.0.1",
"pg": "^8.0.0",
"pg-format": "^1.0.0",
"pg-promise": "^10.0.0",
"postgrator": "^2.8.2",
"pouchdb-core": "^7.0.0",
"pouchdb-adapter-http": "^7.0.0",
"rsvp": "^3.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^3.0.0",
"chai-as-promised": "^5.0.0",
"es6-promise": "4.2.4",
"eslint": "^5.13.0",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"request": "^2.88.0",
"rewire": "^2.5.1",
"sinon": "2.1.0"
}
}