-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "east-mongo",
"description": "mongodb adapter for east (node.js database migration tool)",
"version": "1.0.0",
"author": "Oleg Korobenko <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/okv/east-mongo.git"
},
"main": "lib/index.js",
"keywords": [
"database",
"db",
"migrate",
"mongo",
"mongodb"
],
"scripts": {
"test": "tape \"test/**/*.test.js\" | tap_bail | tap-dot",
"testWithoutBail": "tape \"test/**/*.test.js\" | tap-dot",
"makeCodeCoverageSummaryReport": "nyc --reporter text-summary npm test",
"makeCodeCoverageDetailReport": "nyc --reporter=lcov --reporter html npm test",
"lint": "eslint ./"
},
"peerDependencies": {
"mongodb": "2.x.x || 3.x.x"
},
"devDependencies": {
"blue-tape": "1.0.0",
"coveralls": "3.0.9",
"es6-promisify": "6.0.2",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.18.2",
"mongodb": "2.x.x || 3.x.x",
"nyc": "14.1.1",
"tap-dot": "2.0.0",
"tap_bail": "1.0.1",
"tape": "4.11.0",
"tape-catch": "1.0.6",
"tape-promise": "4.0.0"
},
"dependencies": {},
"engines": {
"node": ">=4.0.0"
}
}