-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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": "loopback-search-mixin",
"version": "1.0.1",
"description": "A more search friendly search endpoint for loopback",
"main": "index.js",
"scripts": {
"test:travis": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test": "mocha -r should *.spec.js",
"lint": "eslint .",
"format": "prettier-eslint --write '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danwakeem/loopback-search-mixin.git"
},
"keywords": [
"loopback",
"search",
"mixin"
],
"author": "Danwakeem",
"license": "ISC",
"bugs": {
"url": "https://github.com/Danwakeem/loopback-search-mixin/issues"
},
"homepage": "https://github.com/Danwakeem/loopback-search-mixin#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"prettier-eslint-cli": "^4.7.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"proxyquire": "^2.1.0",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.3.2"
},
"dependencies": {
"coveralls": "^3.0.3"
}
}