forked from feathersjs-ecosystem/errors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.25 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
{
"name": "feathers-errors",
"description": "Convenient error handling for Feathers services.",
"version": "0.2.1",
"homepage": "https://github.com/feathersjs/feathers-errors",
"author": {
"name": "Eric Kryski",
"email": "e.kryski@gmail.com"
},
"contributors": [
{
"name": "David Luecke",
"email": "daff@neyeon.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-errors.git"
},
"bugs": {
"url": "https://github.com/feathersjs/feathers-errors/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/feathersjs/feathers-errors/blob/master/LICENSE-MIT"
}
],
"main": "lib/errors",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test",
"start": "grunt"
},
"devDependencies": {
"grunt-cli": "~0.1.7",
"grunt": "~0.4.1",
"grunt-release": "~0.5.1",
"grunt-contrib-jshint": "~0.x",
"grunt-simple-mocha": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"feathers": ">= 0.3.1",
"supertest": "~0.9.0",
"socket.io-client": "^0.9.16"
},
"keywords": [
"feathers-plugin",
"feathers",
"errors",
"error handling"
],
"dependencies": {
"lodash": "^2.4.1"
}
}