-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "doc-parser",
"version": "0.4.9",
"description": "Parses docblocks comments",
"main": "src/index.js",
"scripts": {
"test": "xo && node node_modules/mocha/bin/mocha test --stack-size=5000",
"cover": "node --stack-size=5000 node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glayzzle/doc-parser.git"
},
"xo": {
"space": 2,
"overrides": [
{
"files": "test/*.js",
"envs": [
"node",
"mocha"
]
}
]
},
"keywords": [
"doc",
"parser",
"annotation",
"docblock",
"documention",
"docs"
],
"author": "Ioan CHIRIAC",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/glayzzle/doc-parser/issues"
},
"homepage": "https://github.com/glayzzle/doc-parser#readme",
"devDependencies": {
"coveralls": "^3.0.3",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-documentation": "^1.2.1",
"istanbul": "^0.4.5",
"mocha": "^7.1.1",
"xo": "^0.30.0",
"should": "^13.2.3"
}
}