-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.28 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
45
{
"name": "eslint-plugin-mongodb",
"version": "0.2.5",
"description": "Lint your MongoDB queries.",
"main": "src/index.js",
"scripts": {
"test": "mocha src/**/*.mocha.js",
"coveralls": "istanbul cover _mocha --report lcovonly -- src/**/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"cover": "istanbul cover --report html _mocha -- src/**/*.mocha.js -R spec -t 5000",
"lint": "eslint src/**/*.js",
"preversion": "npm run lint && npm test",
"prettify": "prettier --write 'src/**/*.js'",
"cli": "env NPM_RUN_CLI=1"
},
"repository": {
"type": "git",
"url": "https://github.com/nfroidure/eslint-plugin-mongodb"
},
"keywords": [
"eslint",
"eslintplugin",
"mongodb",
"query",
"queries",
"mongo"
],
"author": "Nicolas Froidure",
"license": "MIT",
"bugs": {
"url": "https://github.com/nfroidure/eslint-plugin-mongoquery/issues"
},
"homepage": "https://github.com/nfroidure/eslint-plugin-mongoquery",
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "4",
"eslint-config-simplifield": "^7.1.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.0.0",
"prettier": "^1.9.2"
},
"dependencies": {
"yerror": "^2.1.0"
}
}