-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
64 lines (64 loc) · 1.42 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
{
"name": "parse-comments",
"description": "Parse code comments from JavaScript or any language that uses the same format.",
"version": "1.0.0",
"homepage": "https://github.com/jonschlinkert/parse-comments",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "jonschlinkert/parse-comments",
"bugs": {
"url": "https://github.com/jonschlinkert/parse-comments/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"extract-comments": "^1.1.0",
"floating-point-regex": "^0.1.0",
"get-value": "^3.0.1",
"inflection": "^1.12.0",
"map-schema": "^0.2.4",
"snapdragon-node": "^3.0.0",
"snapdragon-parser": "^1.0.0",
"tokenize-comment": "^3.0.1"
},
"devDependencies": {
"ansi": "^0.3.1",
"benchmark": "^2.1.4",
"catharsis": "^0.8.9",
"doctrine": "^3.0.0",
"gulp-format-md": "^2.0.0",
"mocha": "^5.2.0",
"object.pick": "^1.3.0"
},
"keywords": [
"code",
"comments",
"parse"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
}
}