-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.4 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
84
85
86
87
88
89
90
91
92
93
{
"name": "@ls-age/esdoc-coverage",
"version": "0.1.6",
"description": "Check ESDoc coverage",
"main": "out/index.js",
"bin": {
"esdoc-coverage": "out/bin.js"
},
"scripts": {
"compile": "babel src --out-dir out",
"compile:watch": "npm run compile -- --watch",
"docs": "esdoc -c esdoc.json",
"lint": "eslint src",
"lint:test": "eslint test",
"prepublish": "npm run compile && npm run docs",
"commitmsg": "conventional-changelog-lint -e",
"test": "cross-env NODE_ENV=test mocha --recursive --require babel-register \\\"test/src/**/*.spec.js\\\"",
"test:ci": "circleci build",
"test:watch": "npm test -- --watch --reporter min",
"test:coverage": "nyc --reporter=html npm test",
"test:docs": "blcl docs/api --exclude https://circleci.com/gh/ls-age/esdoc-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ls-age/esdoc-coverage.git"
},
"author": "Lukas Hechenberger <npm@ls-age.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ls-age/esdoc-coverage/issues"
},
"homepage": "https://github.com/ls-age/esdoc-coverage#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.24.1",
"broken-link-checker-local": "^0.1.1",
"codecov": "^2.1.0",
"conventional-changelog-lint": "^1.1.9",
"conventional-github-releaser": "^1.1.10",
"cross-env": "^4.0.0",
"esdoc": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"esdoc-uploader": "^1.0.1",
"eslint": "^3.19.0",
"eslint-config-lsage": "^0.1.0",
"husky": "^0.13.3",
"mocha": "^3.2.0",
"mocha-circleci-reporter": "0.0.2",
"nyc": "^10.2.0",
"sinon": "^2.1.0",
"standard-version": "^4.2.0",
"unexpected": "^10.26.3"
},
"dependencies": {
"chalk": "^1.1.3",
"cli-table": "^0.3.1",
"create-junit-report": "^1.1.0",
"xml2js": "^0.4.17",
"yargs": "^7.0.2"
},
"eslintConfig": {
"extends": "lsage"
},
"babel": {
"presets": [
"node6"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"res/**/*.*"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"check-coverage": true
}
}