forked from GillianPerard/typescript-json-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "typescript-json-serializer",
"version": "1.3.0",
"description": "Typescript library to serialize classes into json and deserialize json into classes.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "gulp build",
"test": "jest",
"cover": "jest --coverage",
"lint": "./node_modules/tslint/bin/tslint -p tsconfig.json",
"pub": "cd dist/src/ && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GillianPerard/typescript-json-serializer.git"
},
"author": "Gillian Pérard",
"license": "MIT",
"bugs": {
"url": "https://github.com/GillianPerard/typescript-json-serializer/issues"
},
"homepage": "https://github.com/GillianPerard/typescript-json-serializer#readme",
"keywords": [
"json",
"typescript",
"serializer",
"deserializer",
"decorator",
"metadata"
],
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"coveralls": "^3.0.5",
"del": "^5.0.0",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}