forked from mongodb/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "mongodb",
"version": "3.1.0-beta2",
"description": "The official MongoDB driver for Node.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:mongodb/node-mongodb-native.git"
},
"keywords": [
"mongodb",
"driver",
"official"
],
"dependencies": {
"mongodb-core": "3.1.0-beta2"
},
"devDependencies": {
"bluebird": "3.5.0",
"bson": "^1.0.4",
"chai": "^4.1.1",
"chai-subset": "^1.6.0",
"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-extjson": "^2.1.1",
"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"
},
"author": "Christian Kvalheim",
"license": "Apache-2.0",
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/mongodb/node-mongodb-native/issues"
},
"scripts": {
"test": "npm run lint && mongodb-test-runner -t 60000 test/unit test/functional",
"coverage": "istanbul cover mongodb-test-runner -- -t 60000 test/unit test/functional",
"lint": "eslint lib test",
"format": "prettier --print-width 100 --tab-width 2 --single-quote --write 'test/**/*.js' 'lib/**/*.js'",
"changelog": "conventional-changelog -p angular -i HISTORY.md -s",
"bench": "node test/driverBench/"
},
"homepage": "https://github.com/mongodb/node-mongodb-native"
}