UNPKG

1.25 kBJSONView Raw
1{
2 "name": "jsdoctest",
3 "version": "1.1.2",
4 "description": "Run jsdoc examples as doctests",
5 "main": "lib/index.js",
6 "bin": "bin/jsdoctest",
7 "scripts": {
8 "bin": "./bin/jsdoctest",
9 "test": "JSDOCTEST_DISABLE=true mocha --require blanket -R mocha-spec-cov-alt",
10 "coverage": "JSDOCTEST_DISABLE=true mocha --require blanket -R html-cov > coverage.html"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git://github.com/yamadapc/jsdoctest.git"
15 },
16 "keywords": [
17 "test",
18 "jsdoc",
19 "doctests",
20 "testing",
21 "workflow"
22 ],
23 "author": "Pedro Tacla Yamada <tacla.yamada@gmail.com>",
24 "license": "MIT",
25 "bugs": {
26 "url": "https://github.com/yamadapc/jsdoctest/issues"
27 },
28 "homepage": "https://github.com/yamadapc/jsdoctest",
29 "dependencies": {
30 "commander": "^2.5.0",
31 "dox": "^0.5.3",
32 "lodash": "^2.4.1",
33 "should": "^4.3.0"
34 },
35 "devDependencies": {
36 "blanket": "^1.1.6",
37 "mocha": "^2.0.1",
38 "mocha-spec-cov-alt": "^0.2.3"
39 },
40 "config": {
41 "blanket": {
42 "data-cover-never": [
43 "node_modules"
44 ],
45 "pattern": [
46 "lib",
47 "bin"
48 ],
49 "spec-cov": {
50 "threshold": 70,
51 "lcovOutput": "lcov"
52 }
53 }
54 }
55}