This repository was 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
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
63
64
65
66
67
68
69
70
71
{
"name": "feathers-query-filters",
"description": "Adds support for special query string params used for filtering data",
"version": "1.5.0",
"license": "MIT",
"homepage": "https://github.com/feathersjs/feathers-query-filters",
"main": "lib/",
"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": ">= 0.12.0"
},
"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": "rm -rf lib/ && babel -d lib/ src/",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --compilers js:babel/register",
"test": "npm run jshint && npm run mocha && nsp check"
},
"directories": {
"lib": "lib"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.8.29",
"chai": "^3.4.0",
"feathers": "^1.1.1",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"nsp": "^2.2.0"
}
}