-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.56 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.56 KB
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
{
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"commander": "^11.0.0",
"jest-message-util": "^29.7.0",
"jest-util": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
},
"name": "til-tool",
"description": "A command-line tool for authoring \"Today I Learned\" posts in Markdown, which can be converted to HTML for publishing on the web",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"prettier": "npx prettier --write .",
"prettier-check": "npx prettier . --check",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"test": "jest --",
"test:watch": "jest -c jest.config.js --runInBand --watch --",
"coverage": "jest -c jest.config.js --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seog-jun/til-tool.git"
},
"author": "Seog-Jun Hong",
"license": "MIT",
"bugs": {
"url": "https://github.com/seog-jun/til-tool/issues"
},
"homepage": "https://github.com/seog-jun/til-tool#readme",
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}