-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 1.58 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
{
"name": "todo-plus-parser",
"version": "0.1.5",
"description": "parse todo file to fetch doing and critical todo items then generate html file",
"main": "lib/ast.js",
"bin": {
"todo-plus-parser": "./bin/todo-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bmpi-dev/todo_parser_lib.git"
},
"scripts": {
"test": "nyc mocha ./test",
"lint": "eslint .",
"pretest": "npm run lint"
},
"keywords": [
"gtd",
"parser",
"todo",
"txt",
"lex",
"bison",
"jison"
],
"author": "Dawei Ma (https://bmpi.dev) <[email protected]>",
"maintainers": [
{
"name": "Dawei Ma",
"email": "[email protected]",
"web": "https://bmpi.dev"
}
],
"homepage": "https://github.com/bmpi-dev/todo_parser_lib",
"bugs": "https://github.com/bmpi-dev/todo_parser_lib/issues",
"license": "MIT",
"dependencies": {
"glob": "^7.1.6",
"jison": "^0.4.18",
"lex": "^1.7.9",
"lodash": "^4.17.15",
"mustache": "^3.1.0",
"sinon": "^7.5.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-google": "^0.14.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"max-len": [
2,
120,
4,
{
"ignoreUrls": true
}
],
"no-console": 0
}
},
"eslintIgnore": [
"node_modules"
]
}