-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
67 lines (67 loc) · 1.54 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
{
"name": "jsonapi-mapper",
"version": "1.0.0-beta.16",
"description": "JSON API-Compliant Serialization for your ORM",
"main": "es5/index.js",
"types": "es5/index.d.ts",
"scripts": {
"prebuild": "rm -rf es5 || true",
"build": "tsc -p tsconfig.publish.json",
"prepublish": "npm run build",
"pretest": "npm run build -- -p tsconfig.test.json",
"test": "jasmine"
},
"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]"
},
{
"name": "Matteo Ferrando",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/scoutforpets/jsonapi-mapper/issues"
},
"homepage": "https://github.com/scoutforpets/jsonapi-mapper",
"files": [
"es5"
],
"dependencies": {
"@types/bookshelf": "0.9.7",
"inflection": "1.12.0",
"jsonapi-serializer": "3.5.6",
"lodash": "4.17.4",
"qs": "6.5.1",
"type-check": "0.3.2"
},
"devDependencies": {
"@types/inflection": "1.5.28",
"@types/jasmine": "2.8.4",
"@types/knex": "0.0.61",
"@types/lodash": "4.14.93",
"@types/qs": "6.5.1",
"bookshelf": "0.10.4",
"jasmine": "2.9.0",
"knex": "0.13.0",
"typescript": "2.6.2"
}
}