-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 KB
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
56
57
58
59
60
61
62
{
"name": "mongo-qp",
"version": "1.3.8",
"description": "Creates a object that contains mongo query objects. filter,sort,projection,limit,skip",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --recursive dist/__tests__",
"prebuild": "rimraf lib dist",
"build": "webpack && tsc",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=6.5.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"typings": "dist/types/index",
"repository": {
"type": "git",
"url": "https://github.com/NoahWallace/mongoQueryParser.git"
},
"keywords": [
"mongo",
"mongodb",
"query",
"parser",
"node",
"nodejs",
"node driver",
"mongo driver",
"query parser",
"Mongodb Node.JS Driver"
],
"author": {
"name": "Noah Wallace",
"email": "noah.z.wallace@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@types/assert": "0.0.31",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/mongodb": "^3.0.18",
"@types/node": "^10.0.8",
"assert": "^1.4.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"mocha": "^5.1.1",
"mongodb": "^3.1.0-beta4",
"rimraf": "^2.6.2",
"ts-lint": "^4.5.1",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"webpack": "^4.8.2",
"webpack-cli": "^2.1.3",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {}
}