-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
93 lines (93 loc) · 2.17 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
{
"name": "leasot",
"description": "Parse and output TODOs and FIXMEs from comments in your files",
"version": "14.4.0",
"author": "Gilad Peleg <[email protected]> (https://www.giladpeleg.com)",
"type": "module",
"bin": {
"leasot": "dist/cli/leasot.js",
"leasot-reporter": "dist/cli/leasot-reporter.js"
},
"dependencies": {
"async": "^3.2.4",
"chalk": "^5.0.1",
"commander": "^9.4.0",
"eol": "^0.9.1",
"get-stdin": "^9.0.0",
"globby": "^13.1.2",
"json2xml": "^0.1.3",
"lodash": "^4.17.21",
"log-symbols": "^5.1.0",
"strip-ansi": "^7.0.1",
"text-table": "^0.2.0"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/lodash": "^4.14.182",
"@types/mocha": "^10.0.1",
"@types/node": "^18.0.6",
"@types/normalize-path": "^3.0.0",
"@types/text-table": "^0.2.2",
"husky": "^9.0.11",
"jsdoc-to-markdown": "^8.0.0",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"normalize-path": "3.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"should": "^13.2.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"bin"
],
"keywords": [
"fixme",
"todo",
"comments",
"list",
"parse",
"generator",
"ci",
"productivity",
"automation",
"typescript",
"prettier"
],
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgilad/leasot.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf docs dist",
"docs": "typedoc src/index.ts src/definitions.ts",
"predocs:publish": "npm run release:prepare",
"prettier": "prettier --write src/ tests/",
"prettier-check": "prettier --check src/ tests/",
"release:prepare": "npm run clean && npm run prettier && npm run build && npm run test && npm run docs",
"test": "mocha",
"prepare": "husky install"
},
"lint-staged": {
"*.yml": [
"prettier --write"
],
"*.ts": [
"prettier --write"
]
}
}