Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

Commit 1080267

Browse files
author
Hans Kristian Flaatten
committed
Add NPM package.json file
1 parent 6b1bca3 commit 1080267

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

package.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "mongo-querystring",
3+
"version": "0.0.1",
4+
"description": "Parse and pass URL queries to MongoDB query",
5+
"repository": {
6+
"type": "git",
7+
"url": "[email protected]:Turistforeningen/node-mongo-querystring.git"
8+
},
9+
"main": "lib/index.js",
10+
"directories": {
11+
"src": "src",
12+
"lib": "lib",
13+
"test": "test"
14+
},
15+
"scripts": {
16+
"build": "coffee --bare --compile --output lib/ src/*",
17+
"prepublish": "coffee --bare --compile --output lib/ src/*",
18+
"postpublish": "rm -rf lib/*",
19+
"test": "mocha -w -b -c --check-leaks test/suite.coffee -R progress --compilers coffee:coffee-script/register",
20+
"test-drone": "node_modules/.bin/mocha -b -c --check-leaks test/suite.coffee -R spec --compilers coffee:coffee-script/register"
21+
},
22+
"keywords": [
23+
"query",
24+
"querystring",
25+
"parser",
26+
"uri",
27+
"url",
28+
"mongo",
29+
"mongodb"
30+
],
31+
"author": {
32+
"name": "Hans Kristian Flaatten",
33+
"email": "[email protected]",
34+
"url": "https://github.com/starefossen"
35+
},
36+
"license": "MIT",
37+
"bugs": {
38+
"url": "https://github.com/Turistforeningen/node-mongo-querystring/issues"
39+
},
40+
"homepage": "https://github.com/Turistforeningen/node-mongo-querystring",
41+
"devDependencies": {
42+
"coffee-script": "^1.8.0",
43+
"mocha": "^1.21.4"
44+
}
45+
}

0 commit comments

Comments
 (0)