-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "tsto",
"version": "0.1.7",
"description": "Typescript Transfer Objects - library for seamlessly transform loosly typed input into strongly typed output.",
"keywords": [
"typescript",
"dto",
"mapping",
"decorators",
"annotation",
"transfer",
"object"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "chokidar -c \"npm test\" \"**/*.ts\"",
"build": "rimraf ./dist && tsc --project tsconfig.json",
"test": "testyts",
"lint-staged": "lint-staged",
"prepare": "husky install",
"hooks:precommit": "npm run lint-staged",
"prepublishOnly": "npm run build && rimraf -v -g ./dist/**/*.spec.d.ts ./dist/**/*.spec.js ./dist/**/*.spec.js.map"
},
"author": "Lars von Qualen <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"chokidar-cli": "^3.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"organize-imports-cli": "^0.10.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"testyts": "^1.5.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": [
"organize-imports-cli",
"prettier --write",
"eslint --cache --fix"
],
"*.{json,html,js,pug,yml,scss}": [
"prettier --write"
]
}
}