-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
83 lines (83 loc) · 1.83 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
81
82
83
{
"name": "extract-comments",
"description": "Uses esprima to extract line and block comments from a string of JavaScript. Also optionally parses code context (the next line of code after a comment).",
"version": "1.1.0",
"homepage": "https://github.com/jonschlinkert/extract-comments",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Caleb (https://github.com/cazzer)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Tomek Wiszniewski (http://tomek.wiszniewski.cc)"
],
"repository": "jonschlinkert/extract-comments",
"bugs": {
"url": "https://github.com/jonschlinkert/extract-comments/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"esprima-extract-comments": "^1.1.0",
"parse-code-context": "^1.0.0"
},
"devDependencies": {
"babel-extract-comments": "^1.0.0",
"espree-extract-comments": "^0.1.0",
"gulp-format-md": "^2.0.0",
"mocha": "^5.2.0",
"time-diff": "^0.3.1"
},
"keywords": [
"ast",
"block",
"code",
"comment",
"comments",
"context",
"esprima",
"extract",
"glob",
"javascript",
"line",
"parse",
"tokenize",
"tokens"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"babel-extract-comments",
"code-context",
"espree-extract-comments",
"esprima-extract-comments",
"parse-comments"
]
},
"reflinks": [
"babel-extract-comments",
"espree-extract-comments",
"esprima",
"esprima-extract-comments"
],
"lint": {
"reflinks": true
}
}
}