-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "mongo-bulk",
"version": "1.0.0",
"description": "Lightweight wrapper around mongodb's bulkWrite for more intuitive bulk operations",
"main": "dist/index.js",
"author": "Jeremy Bini",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:jeremybini/mongo-bulk.git"
},
"keywords": [
"mongo",
"mongodb",
"bulk",
"bulkWrite",
"updateMany"
],
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"build": "babel src -d dist",
"clean": "rm -rf dist",
"cover": "NODE_ENV=test nyc mocha --opts mocha.opts",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src tests",
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run clean & npm run build",
"test": "NODE_ENV=test mocha --opts mocha.opts",
"test:dev": "npm run test -- --watch"
},
"dependencies": {
"bluebird": "^3.5.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.25"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.6.1",
"chance": "^1.0.6",
"coveralls": "^2.12.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"expect": "^1.20.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"monk": "^4.0.0",
"nyc": "^10.1.2"
},
"homepage": "https://github.com/jeremybini/mongo-bulk"
}