-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 938 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 938 Bytes
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
{
"name": "ntodo",
"description": "A simple CLI TODO/FIXME parser for the lazy coder",
"keywords": [
"todo",
"fixme",
"cli",
"github",
"utils"
],
"author": "Christian Sanz <chrissanz@chrissanz.com>",
"version": "1.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/csanz/node-ntodo"
},
"engines": {
"node": ">=8.9.4"
},
"dependencies": {
"optimist": ">= 0.6.1",
"colors": "*",
"mocha": "5.2.0",
"klaw": "3.0.0",
"through2": "3.0.0",
"async": "3.0.1-0",
"line-reader": "0.4.0",
"fs-extra": "^7.0.1",
"ntodo": "0.1.2",
"commander": "2.19.0"
},
"directories": {
"test": "./test"
},
"main": "./index.js",
"bin": {
"ntodo": "./bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"test": "standard && mocha ./test/test.js"
},
"devDependencies": {
"standard": "^12.0.1"
}
}