This repository has been archived by the owner on Jan 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
103 lines (103 loc) · 2.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "feathers-query-filters",
"description": "Adds support for special query string params used for filtering data",
"version": "2.1.2",
"license": "MIT",
"homepage": "https://github.com/feathersjs/feathers-query-filters",
"main": "lib/index",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"nedb",
"service",
"filters",
"sort",
"limit",
"skip",
"select"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/feathersjs/feathers-query-filters/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-query-filters.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [
"Eric Kryski <e.kryski@gmail.com> (http://erickryski.com)",
"David Luecke <daff@neyeon.de> (http://neyeon.com)",
"Marshall Thompson <marshall@creativeideal.net> (https://github.com/marshallswain)"
],
"bugs": {
"url": "https://github.com/feathersjs/feathers-query-filters/issues"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rimraf lib/ && babel -d lib/ src/",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib"
]
},
"directories": {
"lib": "lib"
},
"greenkeeper": {
"ignore": [
"feathers-commons",
"babel-cli",
"babel-core",
"babel-plugin-add-module-exports",
"babel-preset-es2015",
"chai",
"eslint-if-supported",
"feathers",
"istanbul",
"mocha",
"rimraf",
"semistandard"
]
},
"dependencies": {
"feathers-commons": "^0.8.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-es2015": "^6.3.13",
"chai": "^4.0.0",
"eslint-if-supported": "^1.0.1",
"feathers": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.0",
"rimraf": "^2.5.4",
"semistandard": "^12.0.0"
}
}