-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 769 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 769 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
{
"name": "cdocparser",
"version": "0.15.0",
"description": "Extract C style comments and extract context from source",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/FWeinb/CDocParser"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test"
},
"keywords": [
"doc",
"documentation",
"extract",
"parse"
],
"author": "Fabrice Weinberg <Fabrice@weinberg.me>",
"contributors": [
"joshwnj <josh@x-team.com> (http://x-team.com)"
],
"license": "MIT",
"devDependencies": {
"assert": "^1.1.1",
"mocha": "^2.1.0"
},
"dependencies": {
"escape-string-regexp": "^1.0.2",
"lodash.assign": "^2.4.1",
"lodash.union": "^3.1.0",
"strip-indent": "^1.0.0"
}
}