-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 893 Bytes
/
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
{
"name": "mongodb-lite",
"version": "1.3.0",
"description": "A lightweight MongoDB driver",
"author": "Jan Kuča <[email protected]>",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"buffalo": ">= 0.0.1"
},
"devDependencies": {
"blanket": "1.1.x",
"expect.js": "~0.2.0",
"mocha": "~1.16.2"
},
"scripts": {
"test-unit":
"./node_modules/.bin/mocha test -R dot -r test/_globals --check-leaks --recursive 2>&1 | grep -v 'ERR!'; npm run-script cov-unit &> /dev/null",
"cov-unit":
"./node_modules/.bin/mocha test -R html-cov -r test/_globals --recursive > .cov.html",
"test":
"echo '\\033[2A\\033[K\\033[A\\033[K\\033[A\\033[K\\033[3;36mUnit testing...\\033[2;37m'; npm run-script test-unit"
},
"repository": {
"type": "git",
"url": "git://github.com/jankuca/node-mongodb-lite.git"
}
}