-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "report-todo",
"version": "1.0.1",
"author": {
"name": "Dario Giovannetti",
"email": "[email protected]",
"url": "http://dariogiovannetti.net"
},
"description": "Parse and report TODO, FIXME, BUG etc. comments in source code.",
"license": "MIT",
"homepage": "https://github.com/kynikos/report-todo",
"repository": {
"type": "git",
"url": "https://github.com/kynikos/report-todo.git"
},
"keywords": [
"bug",
"bugs",
"comments",
"fixme",
"issues",
"productivity",
"todo",
"tracker"
],
"main": "./dist/index.js",
"bin": {
"report-todo": "./dist/report-todo.js"
},
"directories": {
"lib": "./src",
"doc": "./README.md"
},
"scripts": {
"test": "./tasks.js test"
},
"devDependencies": {
"@kynikos/misc": "^0.3.4",
"@kynikos/tasks": "^1.0.3",
"clean-webpack-plugin": "^3.0.0",
"commander": "^4.1.1",
"common-tags": "^1.8.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-promise": "^4.2.1",
"fs-extra": "^8.1.0",
"globby": "^11.0.0",
"jest": "^25.1.0",
"lodash.escaperegexp": "^4.1.2",
"queueable": "^4.1.4",
"readline-sync": "^1.4.10",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}