-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.96 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@yamatomo/typed-json-mapper",
"version": "1.1.0",
"description": "Type-safe json mapper",
"keywords": [
"typescript",
"json",
"map",
"mapper",
"mapping",
"typesafe",
"type-safe"
],
"author": "Yama-Tomo <mazda13bturbo@gmail.com> (https://github.com/Yama-Tomo/)",
"repository": "https://github.com/Yama-Tomo/typed-json-mapper.git",
"bugs": {
"url": "https://github.com/Yama-Tomo/typed-json-mapper/issues"
},
"homepage": "https://github.com/Yama-Tomo/typed-json-mapper#readme",
"license": "MIT",
"bin": {
"mapper-code-lint": "dist/lint.js"
},
"main": "dist/index.js",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"lint": "eslint './**/*.{js,ts,tsx}' --format codeframe --color",
"build": "tsc && webpack",
"test": "jest",
"run-prettier": "prettier './**/*.{js,ts,tsx}'",
"format": "yarn run-prettier -w",
"release": "yarn standard-version"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chalk": "^4.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"shebang-loader": "^0.0.1",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"yargs": "^16.2.0"
},
"peerDependencies": {
"typescript": ">=3.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"./**/*.test.ts"
]
}
}