-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (43 loc) · 1.14 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
{
"author": "Martin Wawrusch <[email protected]> (http://martinatsunset.com)",
"name": "mongodb-objectid-helper",
"description": "A simple helper to determine if a string is a mongodb object id",
"version": "0.2.0",
"main" : "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/codedoctor/node-mongodb-objectid-helper.git"
},
"bin" : {
},
"directories" : {
"lib" : "./lib",
"test" : "./test"
},
"keywords" : [
"mongodb", "objectid"
],
"scripts": {
"prepublish" : "coffee -c -o lib src",
"watch" : "coffee -c -w -o lib src",
"test": "coffee -c -o lib src;NODE_ENV=test node_modules/.bin/mocha --timeout 10000 -R spec test/*-test.coffee"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"bson" : ">=0.4.12"
},
"devDependencies": {
"async": "1.4.2",
"coffee-script": "1.10.0",
"should": "7.1.0",
"mocha": "2.3.3"
},
"bugs": { "url": "http://github.com/codedoctor/node-mongodb-objectid-helper/issues" },
"licenses": [
{ "type": "MIT",
"url": "http://github.com/codedoctor/node-mongodb-objectid-helper/raw/master/LICENSE"
}
]
}