forked from scoutforpets/jsonapi-mapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.19 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
{
"name": "jsonapi-mapper",
"version": "1.0.0-beta.9",
"description": "JSON API-Compliant Serialization for your ORM",
"main": "es5/src/mapper.js",
"scripts": {
"prepublish": "typings install && tsc",
"pretest": "tsc",
"test": "jasmine",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/scoutforpets/jsonapi-mapper"
},
"keywords": [
"json",
"api",
"json-api",
"jsonapi",
"orm",
"mapper",
"bookshelf",
"serializer",
"serialization"
],
"author": "James Dixon <[email protected]>",
"contributors": [
{
"name": "Manuel Pacheco",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/scoutforpets/jsonapi-mapper/issues"
},
"homepage": "https://github.com/scoutforpets/jsonapi-mapper",
"files": [
"es5"
],
"dependencies": {
"inflection": "1.10.0",
"jsonapi-serializer": "^3.3.0",
"lodash": "^4.14.2",
"qs": "^6.2.1",
"type-check": "^0.3.2"
},
"devDependencies": {
"bookshelf": "^0.10.0",
"jasmine": "^2.5.2",
"knex": "^0.11.9",
"typescript": "^2.0.3",
"typings": "^1.3.2"
}
}