forked from ShadowManu/jsonapi-deserializer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "jsonapi-deserializer-es",
"version": "0.2.1",
"description": "JSON API-Compliant Deserializer",
"main": "es5/src/index.js",
"types": "es5/src/index.d.ts",
"scripts": {
"prepublish": "tsc",
"pretest": "tsc",
"test": "jasmine",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Styria-Digital/jsonapi-deserializer-es"
},
"keywords": [
"json",
"api",
"json-api",
"jsonapi",
"deserializer",
"deserialization"
],
"author": "Manuel Pacheco <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Styria-Digital/jsonapi-deserializer-es/issues"
},
"homepage": "https://github.com/Styria-Digital/jsonapi-deserializer-es#readme",
"files": [
"es5"
],
"dependencies": {
"lodash": "~4.17.21",
"type-check": "^0.3.2"
},
"devDependencies": {
"@types/jasmine": "^2.5.40",
"@types/lodash": "^4.14.50",
"@types/node": "^7.0.0",
"@types/type-check": "^0.3.27",
"jasmine": "^2.5.3",
"tslint": "^4.3.1",
"typescript": "^3.5.1"
}
}