-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.5 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
68
69
70
71
{
"name": "ts-serializer",
"version": "2.2.5",
"repository": "https://github.com/dpopescu/ts-serializer",
"author": {
"name": "Daniel Popescu",
"email": "danielpopescu95@gmail.com"
},
"contributors": [
{
"name": "Fellipe Pinheiro",
"email": "pinheiro.llip@gmail.com"
},
{
"name": "Debasis Kar",
"email": "debasis.babun@gmail.com"
}
],
"license": "Apache-2.0",
"keywords": [
"typescript",
"serialize",
"deserialize",
"library",
"json",
"mapping"
],
"bugs": {
"url": "https://github.com/dpopescu/ts-serializer/issues"
},
"homepage": "https://github.com/dpopescu/ts-serializer#readme",
"main": "dist/ts-serializer.js",
"module": "dist/ts-serializer.js",
"typings": "dist/ts-serializer.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack",
"test": "jest --verbose",
"test-coverage": "jest --verbose --coverage",
"publish": "npm publish --access=public"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"typescript": "^3.4.5",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
}
}
}