-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.59 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
{
"name": "typescript-todo-or-die-plugin",
"version": "0.6.0",
"description": "",
"main": "lib/index.js",
"bin": {
"tod": "lib/cli.js"
},
"files": [
"lib"
],
"contributors": [
{
"name": "Dylan Carver",
"email": "[email protected]",
"url": "http://dylancarver.dev/"
},
{
"name": "Niek Nijland",
"email": "[email protected]",
"url": "http://nieknijland.nl/"
},
{
"name": "Bogdan Nenu",
"email": "[email protected]",
"url": "http://bogdannenu.com/"
}
],
"scripts": {
"compile": "tsc -p .",
"watch:compile": "tsc --watch -p .",
"lint": "eslint .",
"test": "jest .",
"test:watch": "jest . --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngnijland/typescript-todo-or-die-plugin.git"
},
"keywords": [
"typescript",
"plugin",
"todo",
"comments"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngnijland/typescript-todo-or-die-plugin/issues"
},
"homepage": "https://github.com/ngnijland/typescript-todo-or-die-plugin#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.2.0",
"easy-table": "^1.2.0",
"fast-glob": "^3.2.7",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "27.4.7",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5"
}
}