forked from pgilad/leasot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1015 Bytes
/
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
{
"name": "leasot",
"description": "Parse and output TODOs and FIXMEs from comments in your files",
"version": "4.3.0",
"author": "Gilad Peleg <[email protected]> (http://giladpeleg.com)",
"bin": {
"leasot": "./bin/leasot.js",
"leasot-reporter": "./bin/leasot-reporter.js"
},
"dependencies": {
"async": "^2.1.2",
"chalk": "^1.1.1",
"commander": "^2.9.0",
"get-line-from-pos": "^1.0.0",
"get-stdin": "^5.0.1",
"globby": "^6.0.0",
"json2xml": "^0.1.2",
"lodash": "^4.16.4",
"log-symbols": "^1.0.2",
"text-table": "^0.2.0"
},
"devDependencies": {
"mocha": "^3.1.2",
"should": "^11.1.1"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"index.js",
"lib",
"bin"
],
"keywords": "fixme, todo, comments, list, parse, generator, ci, productivity, automation",
"license": "MIT",
"main": "index.js",
"preferGlobal": true,
"repository": "pgilad/leasot",
"scripts": {
"test": "mocha -R spec ./tests/*.js"
}
}