-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.29 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
{
"name": "@lint-todo/utils",
"version": "13.1.1",
"repository": "https://github.com/lint-todo/utils.git",
"license": "MIT",
"author": "Steve Calvert <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --watch",
"clean": "tsc --build --clean",
"docs:update": "npm run build && readme-api-generator lib/builders.js lib/io.js lib/todo-config.js lib/get-severity.js lib/date-utils.js lib/source.js",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"test": "npm-run-all lint test:*",
"test:vitest": "vitest run"
},
"dependencies": {
"@types/eslint": "^8.4.9",
"find-up": "^5.0.0",
"fs-extra": "^9.1.0",
"proper-lockfile": "^4.1.2",
"slash": "^3.0.0",
"tslib": "^2.6.2",
"upath": "^2.0.1"
},
"devDependencies": {
"@scalvert/readme-api-generator": "^0.2.4",
"@types/fs-extra": "^9.0.13",
"@types/proper-lockfile": "^4.1.2",
"@types/slash": "^3.0.0",
"@types/tmp": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"date-fns": "^2.29.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^44.0.2",
"fixturify-project": "^2.1.1",
"jsdoc-to-markdown": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"release-it": "^14.11.8",
"release-it-lerna-changelog": "^4.0.1",
"tmp": "^0.2.3",
"type-fest": "^3.6.1",
"typescript": "^4.9.3",
"vite": "^4.1.4",
"vitest": "^0.25.3"
},
"engines": {
"node": "12.* || >= 14"
},
"files": [
"lib/"
],
"resolutions": {
"yargs-parser": "^20.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "14.18.3",
"npm": "8.19.2"
}
}