-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.11 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "lehre",
"version": "1.5.0",
"author": "Shinya Ohyanagi",
"license": "MIT",
"description": "Generate document block(JsDoc,EsDoc,TsDoc) from signature",
"keywords": [
"typescript",
"documentation",
"document",
"generator",
"jsdoc",
"esdoc",
"tsdoc",
"api"
],
"bin": {
"lehre": "./bin/lehre"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heavenshell/ts-lehre.git"
},
"scripts": {
"build": "tsc",
"build:dev": "tsc",
"precommit": "lint-staged",
"prepare": "npm run build",
"lint:ts": "eslint --color --cache 'src/**/*.ts{,x}'",
"lint:md": "markdownlint README.md",
"lint": "run-p -l lint:*",
"test": "jest --maxWorkers=1",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger"
},
"dependencies": {
"@babel/parser": "7.20.3",
"@babel/types": "7.20.2",
"commander": "9.4.1",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/babel-types": "7.0.11",
"@types/jest": "27.5.2",
"@types/node": "16.11.43",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"markdownlint-cli": "0.31.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"shipjs": "0.24.4",
"ts-jest": "27.1.5",
"ts-node": "10.8.2"
},
"jest": {
"setupFilesAfterEnv": [
"./configs/jest.setup.ts"
],
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/src/**/*.spec.ts?(x)"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/configs/tsconfig.test.json"
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}