package.json
2.3 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"_args": [
[
"mongodb@3.0.4",
"/Users/jeminlee/git-projects/node-practice/npm-demo"
]
],
"_from": "mongodb@3.0.4",
"_id": "mongodb@3.0.4",
"_inBundle": false,
"_integrity": "sha512-90YIIs7A4ko4kCGafxxXj3foexCAlJBC0YLwwIKgSLoE7Vni2IqUMz6HSsZ3zbXOfR1KWtxfnc0RyAMAY/ViLg==",
"_location": "/mongodb",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "mongodb@3.0.4",
"name": "mongodb",
"escapedName": "mongodb",
"rawSpec": "3.0.4",
"saveSpec": null,
"fetchSpec": "3.0.4"
},
"_requiredBy": [
"/mongoose"
],
"_resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.0.4.tgz",
"_spec": "3.0.4",
"_where": "/Users/jeminlee/git-projects/node-practice/npm-demo",
"author": {
"name": "Christian Kvalheim"
},
"bugs": {
"url": "https://github.com/mongodb/node-mongodb-native/issues"
},
"dependencies": {
"mongodb-core": "3.0.4"
},
"description": "The official MongoDB driver for Node.js",
"devDependencies": {
"betterbenchmarks": "^0.1.0",
"bluebird": "3.5.0",
"bson": "^1.0.4",
"chai": "^4.1.1",
"co": "4.6.0",
"conventional-changelog-cli": "^1.3.5",
"coveralls": "^2.11.6",
"eslint": "^4.5.0",
"eslint-plugin-prettier": "^2.2.0",
"istanbul": "^0.4.5",
"jsdoc": "3.5.4",
"mongodb-extended-json": "^1.10.0",
"mongodb-mock-server": "^1.0.0",
"mongodb-test-runner": "^1.1.18",
"prettier": "^1.5.3",
"semver": "5.4.1",
"sinon": "^4.3.0",
"worker-farm": "^1.5.0"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/mongodb/node-mongodb-native",
"keywords": [
"mongodb",
"driver",
"official"
],
"license": "Apache-2.0",
"main": "index.js",
"name": "mongodb",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mongodb/node-mongodb-native.git"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i HISTORY.md -s",
"coverage": "istanbul cover mongodb-test-runner -- -t 60000 test/unit test/functional",
"format": "prettier --print-width 100 --tab-width 2 --single-quote --write 'test/**/*.js' 'lib/**/*.js'",
"lint": "eslint lib test",
"test": "npm run lint && mongodb-test-runner -t 60000 test/unit test/functional"
},
"version": "3.0.4"
}