-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "easymongo",
"version": "5.0.0",
"description": "Simple interface for the MongoDB API",
"keywords": [
"easymongo",
"mongo",
"mongodb",
"promise"
],
"author": "Alexey Simonenko <[email protected]>",
"homepage": "http://simonenko.su/projects/easymongo",
"main": "./lib/index",
"repository": {
"type": "git",
"url": "https://github.com/meritt/easymongo.git"
},
"dependencies": {
"mongodb": "^2.0.42"
},
"devDependencies": {
"coveralls": "^2.11",
"eslint": "1.4.1",
"husky": "^0.10.1",
"istanbul": "^0.3",
"mocha": "^2.3",
"should": "^7.1",
"should-promised": "^0.3.1"
},
"scripts": {
"lint": "eslint .",
"mocha": "mocha --reporter dot",
"pretest": "npm run lint",
"test": "npm run mocha",
"posttest": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R dot && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prepush": "npm run lint"
},
"engines": {
"node": "^4.0.0"
},
"license": "MIT"
}