-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 948 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
31
32
33
34
35
36
37
38
{
"name": "json-api-mongo-parser",
"version": "0.3.1",
"description": "JSON API query parser for MongoDB/Mongoose queries.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/istanbul cover --print both ./node_modules/mocha/bin/_mocha -- -R spec ./test/**/*.js",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"json",
"json-api",
"jsonapi",
"json api",
"mongo",
"mongoose",
"MongoDB",
"parser"
],
"author": "Kévin Danielo",
"repository": "danivek/json-api-mongo-parser",
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
},
"dependencies": {
"lodash": "^4.5.1"
}
}