-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "@arfedulov/typeorm-jsonapi-serializer",
"version": "0.2.1",
"main": "dist/index.js",
"author": {
"name": "Artem Fedulov",
"email": "arfedulov@gmail.com"
},
"description": "Provides (de)serialization of jsonapi data for typeorm",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/arfedulov/typeorm-jsonapi-serializer.git"
},
"bugs": {
"url": "https://github.com/arfedulov/typeorm-jsonapi-serializer/issues",
"email": "arfedulov@gmail.com"
},
"dependencies": {
"@types/jest": "^24",
"@types/lodash": "^4.14.144",
"@types/node": "^12",
"jsonapi-typescript": "^0.1.3",
"lodash": "^4.17.15",
"log4js": "^5.3.0",
"type-fest": "^0.8.1"
},
"peerDependencies": {
"typeorm": "^0.2.20",
"reflect-metadata": "^0.1.13",
"typescript": "^3"
},
"devDependencies": {
"tslint": "^5",
"ts-node": "^8",
"ts-jest": "^24",
"jest": "^24"
},
"scripts": {
"test": "jest --passWithNoTests",
"check": "tsc --noEmit",
"prebuild": "rm -rf dist && yarn test",
"build": "npx tsc -p tsconfig.build.json --declaration",
"prepublish": "yarn run build"
}
}